-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
59 lines (54 loc) · 1.56 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
# https://packaging.python.org/en/latest/guides/distributing-packages-using-setuptools/#setup-cfg
[metadata]
name = multiformats
author = hashberg
author_email = [email protected]
description = Python implementation of multiformats protocols.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/hashberg-io/multiformats
project_urls =
Bug Tracker = https://github.com/hashberg-io/multiformats/issues
# see https://pypi.org/classifiers/
classifiers =
Development Status :: 3 - Alpha
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.7
Operating System :: OS Independent
Natural Language :: English
Typing :: Typed
[options]
packages = find:
python_requires = >=3.7
install_requires =
typing-extensions>=4.6.0
typing-validation>=1.1.0
bases>=0.3.0
multiformats-config>=0.3.0
[options.package_data]
* = py.typed, *.json
[options.packages.find]
exclude = test
[options.extras_require]
dev =
mypy
pylint
pytest
pytest-cov
blake3
pyskein
mmh3
pycryptodomex
rich # optional dependency of typing_validation
full =
blake3
pyskein
mmh3
pycryptodomex
rich # optional dependency of typing_validation