-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
47 lines (42 loc) · 1.28 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
# 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 = bases
author = hashberg
author_email = [email protected]
description = Python library for general Base-N encodings.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/hashberg-io/bases
project_urls =
Bug Tracker = https://github.com/hashberg-io/bases/issues
# see https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
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
[options.package_data]
* = py.typed
[options.packages.find]
exclude = test
[options.extras_require]
dev =
mypy
pylint
pytest
pytest-cov
base58