-
-
Notifications
You must be signed in to change notification settings - Fork 521
/
setup.cfg
74 lines (69 loc) · 2.31 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[metadata]
name = tox
description = tox is a generic virtualenv management and test command line tool
long_description = file: README.md
long_description_content_type = text/markdown
url = https://tox.readthedocs.io
author = Holger Krekel, Oliver Bestwalter, Bernát Gábor and others
maintainer = Bernát Gábor, Oliver Bestwalter, Anthony Sottile, Jürgen Gmach
maintainer_email = [email protected]
license = MIT
license_files = LICENSE
platforms = any
classifiers =
Development Status :: 5 - Production/Stable
Framework :: tox
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries
Topic :: Software Development :: Testing
Topic :: Utilities
keywords = virtual, environments, isolated, testing
project_urls =
Source=https://github.com/tox-dev/tox
Tracker=https://github.com/tox-dev/tox/issues
Changelog=https://tox.readthedocs.io/en/latest/changelog.html
[options]
packages = find:
install_requires =
filelock>=3.0.0
packaging>=14
pluggy>=0.12.0
py>=1.4.17
six>=1.14.0 # required when virtualenv>=20
virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0
colorama>=0.4.1 ;platform_system=="Windows"
importlib-metadata>=0.12;python_version<"3.8"
toml>=0.10.2;python_version<="3.6"
tomli>=2.0.1;python_version>="3.7" and python_version<"3.11"
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
tox=tox:cmdline
tox-quickstart=tox._quickstart:main
[options.extras_require]
docs =
pygments-github-lexers>=0.0.5
sphinx>=2.0.0
sphinxcontrib-autoprogram>=0.1.5
towncrier>=18.5.0
testing =
flaky>=3.4.0
freezegun>=0.3.11
pytest>=4.0.0
pytest-cov>=2.5.1
pytest-mock>=1.10.0
pytest-randomly>=1.0.0
pathlib2>=2.3.3;python_version<"3.4"
psutil>=5.6.1;platform_python_implementation=="cpython"
[bdist_wheel]
universal = 1