summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: e312603d13aef4073abcf1529e6e649e3b4bed17 (plain)
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
[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 = http://tox.readthedocs.org
author = Bernát Gábor
author_email = gaborjbernat@gmail.com
maintainer = Bernát Gábor, Oliver Bestwalter, Anthony Sottile, Jürgen Gmach
maintainer_email = tox-dev@python.org
license = MIT
license_file = 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 :: 3
    Programming Language :: Python :: 3 :: Only
    Programming Language :: Python :: 3.6
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    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

[options]
packages = find:
install_requires =
    cachetools>=4.2
    chardet>=4
    colorama>=0.4.4
    packaging>=21
    platformdirs>=2.1
    pluggy>=0.13.1
    tomli>=1.1
    virtualenv>=20.6
    importlib-metadata>=4.6.1;python_version<"3.8"
    typing-extensions>=3.10;python_version<"3.8"
python_requires = >=3.6
package_dir =
    =src

[options.packages.find]
where = src

[options.entry_points]
console_scripts =
    tox4 = tox.run:run

[options.extras_require]
docs =
    sphinx>=4.1
    sphinx-argparse-cli>=1.7
    sphinx-autodoc-typehints>=1.12
    sphinx-copybutton>=0.4
    sphinx-inline-tabs>=2021.4.11b9
    sphinx-rtd-theme>=0.5.2
    sphinxcontrib-towncrier>=0.2.0a0
    towncrier>=21.3
testing =
    covdefaults>=1.2
    devpi-client>=5.2
    devpi-server>=6.1
    distlib>=0.3.2
    filelock>=3
    flaky>=3.7
    freezegun>=1.1
    psutil>=5.8
    pytest>=6.2
    pytest-cov>=2.12
    pytest-mock>=3.6
    pytest-xdist>=2.3
    re-assert>=1.1
    setuptools>=57
    setuptools_scm[toml]>=6
    wheel>=0.36

[options.package_data]
tox = py.typed

[tool:pytest]
testpaths = tests
junit_family = xunit2
addopts = --tb=auto -ra --showlocals --no-success-flaky-report

[coverage:run]
parallel = True
plugins = covdefaults

[coverage:report]
fail_under = 95
omit =
    src/tox/config/cli/for_docs.py
    tests/execute/local_subprocess/bad_process.py

[coverage:paths]
source =
    src
    .tox*/*/lib/python*/site-packages
    .tox*/pypy*/site-packages
    .tox*\*\Lib\site-packages\
    */src
    *\src

[coverage:html]
show_contexts = true
skip_covered = false

[coverage:covdefaults]
subtract_omit = */.tox/*

[mypy]
python_version = 3.6
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
disallow_untyped_decorators = True
show_error_codes = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = False
warn_no_return = True
warn_return_any = True
implicit_reexport = False
strict_equality = True
warn_unused_configs = True
pretty = True

[mypy-colorama.*]
ignore_missing_imports = True

[mypy-coverage.*]
ignore_missing_imports = True

[mypy-distlib.*]
ignore_missing_imports = True

[mypy-flaky.*]
ignore_missing_imports = True

[mypy-importlib_metadata.*]
ignore_missing_imports = True

[mypy-pluggy.*]
ignore_missing_imports = True

[mypy-psutil.*]
ignore_missing_imports = True

[mypy-re_assert.*]
ignore_missing_imports = True

[mypy-setuptools.*]
ignore_missing_imports = True

[mypy-virtualenv.*]
ignore_missing_imports = True

[mypy-wheel.*]
ignore_missing_imports = True