-
Notifications
You must be signed in to change notification settings - Fork 59
/
setup.cfg
59 lines (48 loc) · 1.12 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
[bumpversion]
current_version = 2.1.1
[metadata]
name = base58
author = David Keijser
author_email = keijser@gmail.com
version = 2.1.1
description = Base58 and Base58Check implementation.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/keis/base58
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
[options]
packages = base58
zip_safe = False
python_requires = >=3.7
[options.entry_points]
console_scripts =
base58 = base58.__main__:main
[options.package_data]
base58 = py.typed
[options.extras_require]
tests =
flake8
mypy
PyHamcrest>=2.0.2
pytest>=4.6
pytest-benchmark
pytest-cov
[bumpversion:file:setup.cfg]
[bumpversion:file:base58/__init__.py]
[mypy]
warn_unreachable = True
warn_unused_ignores = True
warn_redundant_casts = True
warn_unused_configs = True
check_untyped_defs = True
incremental = False
[mypy-setuptools.*]
ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True