1
1
[metadata]
2
2
license_files =
3
- LICENSE
3
+ LICENSE
4
4
name = setuptools
5
5
version = 54.1.1
6
6
author = Python Packaging Authority
@@ -14,13 +14,13 @@ classifiers =
14
14
License :: OSI Approved :: MIT License
15
15
Programming Language :: Python :: 3
16
16
Programming Language :: Python :: 3 :: Only
17
- Topic :: Software Development :: Libraries :: Python Modules
18
- Topic :: System :: Archiving :: Packaging
19
- Topic :: System :: Systems Administration
20
- Topic :: Utilities
17
+ Topic :: Software Development :: Libraries :: Python Modules
18
+ Topic :: System :: Archiving :: Packaging
19
+ Topic :: System :: Systems Administration
20
+ Topic :: Utilities
21
21
keywords = CPAN PyPI distutils eggs package management
22
22
project_urls =
23
- Documentation = https://setuptools.readthedocs.io/
23
+ Documentation = https://setuptools.readthedocs.io/
24
24
25
25
[options]
26
26
packages = find_namespace:
@@ -31,52 +31,56 @@ install_requires =
31
31
32
32
[options.packages.find]
33
33
exclude =
34
- build*
35
- docs*
36
- tests*
37
- *.tests
38
- tools*
34
+ build*
35
+ dist*
36
+ docs*
37
+ tests*
38
+ *.tests
39
+ tools*
39
40
40
41
[options.extras_require]
41
42
testing =
42
43
# upstream
43
- pytest >= 3.5, !=3.7.3
44
+ pytest >= 4.6
44
45
pytest-checkdocs >= 2.4
45
46
pytest-flake8
47
+ # python_implementation: workaround for jaraco/skeleton#22
46
48
pytest-black >= 0.3.7; python_implementation != "PyPy"
47
49
pytest-cov
48
- pytest-mypy; python_implementation != "PyPy"
50
+ # python_implementation: workaround for jaraco/skeleton#22
51
+ # python_version: workaround for python/typed_ast#156
52
+ pytest-mypy; python_implementation != "PyPy" and python_version < "3.10"
49
53
pytest-enabler >= 1.0.1
50
54
51
55
# local
52
- mock
53
- flake8-2020
54
- virtualenv>=13.0.0
55
- pytest-virtualenv>=1.2.7
56
- wheel
57
- paver
58
- pip>=19.1 # For proper file:// URLs support.
59
- jaraco.envs
60
- pytest-xdist
61
- sphinx
62
- jaraco.path>=3.2.0
56
+ mock
57
+ flake8-2020
58
+ virtualenv>=13.0.0
59
+ pytest-virtualenv>=1.2.7
60
+ wheel
61
+ paver
62
+ pip>=19.1 # For proper file:// URLs support.
63
+ jaraco.envs
64
+ pytest-xdist
65
+ sphinx
66
+ jaraco.path>=3.2.0
63
67
64
68
docs =
65
- # Keep these in sync with docs/requirements.txt
69
+ # Keep these in sync with docs/requirements.txt
66
70
# upstream
67
71
sphinx
68
72
jaraco.packaging >= 8.2
69
73
rst.linker >= 1.9
70
- sphinx-inline-tabs
74
+ sphinx-inline-tabs
71
75
72
76
# local
73
- pygments-github-lexers ==0.0.5
77
+ pygments-github-lexers ==0.0.5
74
78
75
79
ssl =
76
- wincertstore ==0.2; sys_platform=='win32'
80
+ wincertstore ==0.2; sys_platform=='win32'
77
81
78
82
certs =
79
- certifi ==2016.9.26
83
+ certifi ==2016.9.26
80
84
81
85
[options.entry_points]
82
86
0 commit comments