forked from agronholm/typeguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
58 lines (50 loc) · 1.38 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
[metadata]
name = typeguard
description = Run-time type checker for Python
long_description = file: README.rst
author = Alex Grönholm
author_email = alex.gronholm@nextday.fi
project_urls =
Documentation = https://typeguard.readthedocs.io/en/latest/
Change log = https://typeguard.readthedocs.io/en/latest/versionhistory.html
Source code = https://github.com/agronholm/typeguard
Issue tracker = https://github.com/agronholm/typeguard/issues
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
packages = typeguard
python_requires = >= 3.5.2
zip_safe = False
[options.package_data]
typeguard = py.typed
[options.extras_require]
test =
pytest
pytest-cov
typing_extensions
doc =
sphinx_rtd_theme
sphinx-autodoc-typehints >= 1.2.0
[options.entry_points]
pytest11 =
typeguard = typeguard.pytest_plugin
[tool:pytest]
addopts = -rsx --cov --tb=short
testpaths = tests
[coverage:run]
source = typeguard
[coverage:report]
show_missing = true
[flake8]
max-line-length = 99
ignore = E251,W504