-
-
Notifications
You must be signed in to change notification settings - Fork 550
Expand file tree
/
Copy pathpyproject.toml
More file actions
277 lines (267 loc) · 7.89 KB
/
pyproject.toml
File metadata and controls
277 lines (267 loc) · 7.89 KB
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
[build-system]
build-backend = "hatchling.build"
requires = [
"docutils>=0.21",
"hatch-vcs>=0.5",
"hatchling>=1.29",
]
[project]
name = "tox"
description = "tox is a generic virtualenv management and test command line tool"
readme.content-type = "text/markdown"
readme.file = "README.md"
keywords = [
"environments",
"isolated",
"testing",
"virtual",
]
license = "MIT"
maintainers = [
{ name = "Bernát Gábor", email = "gaborjbernat@gmail.com" },
{ name = "Jürgen Gmach", email = "juergen.gmach@googlemail.com" },
{ name = "Rahul Devikar", email = "rahuldevikar5512@gmail.com" },
]
authors = [
{ name = "Bernát Gábor", email = "gaborjbernat@gmail.com" },
]
requires-python = ">=3.10"
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 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
]
dynamic = [
"version",
]
dependencies = [
"cachetools>=7.0.3",
"colorama>=0.4.6",
"filelock>=3.25",
"packaging>=26",
"platformdirs>=4.9.4",
"pluggy>=1.6",
"pyproject-api>=1.10",
"python-discovery>=1.2.2",
"tomli>=2.4; python_version<'3.11'",
"tomli-w>=1.2",
"typing-extensions>=4.15; python_version<'3.11'",
"virtualenv>=21.1",
]
optional-dependencies.completion = [
"argcomplete>=3.6.3",
]
urls."Release Notes" = "https://tox.wiki/en/latest/changelog.html"
urls.Documentation = "https://tox.wiki"
urls.Homepage = "http://tox.readthedocs.org"
urls.Source = "https://github.com/tox-dev/tox"
urls.Tracker = "https://github.com/tox-dev/tox/issues"
scripts.tox = "tox.run:run"
[dependency-groups]
dev = [
{ include-group = "docs" },
{ include-group = "test" },
{ include-group = "type" },
]
test = [
"build[virtualenv]>=1.4",
"covdefaults>=2.3",
"coverage>=7.13.4",
"detect-test-pollution>=1.2",
"devpi-process>=1.1.1",
"diff-cover>=10.2",
"distlib>=0.4",
"docutils>=0.21",
"flaky>=3.8.1",
"hatch-vcs>=0.5",
"hatchling>=1.29",
"pdm-backend>=2.4.7",
"psutil>=7.2.2",
"pytest>=9.0.2",
"pytest-cov>=7",
"pytest-mock>=3.15.1",
"pytest-timeout>=2.4",
"pytest-xdist>=3.8",
"re-assert>=1.1",
"setuptools<82,>=81",
"time-machine>=3.2; implementation_name!='pypy'",
"wheel>=0.46.3",
]
type = [
"ty>=0.0.19",
{ include-group = "docs" },
{ include-group = "release" },
{ include-group = "test" },
]
docs = [
"furo>=2025.12.19",
"sphinx>=9.1",
"sphinx-argparse-cli>=1.21.1",
"sphinx-autodoc-typehints>=3.9.7",
"sphinx-copybutton>=0.5.2",
"sphinx-inline-tabs>=2025.12.21.14",
"sphinx-issues>=5.0.1",
"sphinx-reredirects>=1.1",
"sphinxcontrib-mermaid>=2.0.1",
"sphinxcontrib-towncrier>=0.2.1a0",
"towncrier>=25.8",
"truststore>=0.10.4",
]
fix = [
"pre-commit-uv>=4.2.1",
]
pkg-meta = [
"check-wheel-contents>=0.6.3",
"twine>=6.2",
"uv>=0.10.8",
]
release = [
"gitpython>=3.1.46",
"packaging>=26",
"pre-commit>=4.5.1",
"towncrier>=25.8",
]
type-min = [
"ty>=0.0.19",
{ include-group = "test" },
]
[tool.hatch]
build.dev-mode-dirs = [
"src",
]
build.hooks.custom = {}
build.hooks.vcs.version-file = "src/tox/version.py"
build.targets.sdist.include = [
"/docs/man",
"/src",
"/tests",
"/tox.toml",
]
build.targets.wheel.shared-data = { "build/man" = "share/man/man1" }
version.source = "vcs"
[tool.ruff]
line-length = 120
format.preview = true
format.docstring-code-line-length = 100
format.docstring-code-format = true
lint.select = [
"ALL",
]
lint.ignore = [
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed in `arg`"
"COM812", # conflicts with formatter
"CPY", # No copyright header
"D", # ignore documentation for now
"D203", # `one-blank-line-before-class` (D203) and `no-blank-line-before-class` (D211) are incompatible
"D212", # `multi-line-summary-first-line` (D212) and `multi-line-summary-second-line` (D213) are incompatible
"DOC201", # no restructuredtext support yet
"DOC402", # no restructuredtext support yet
"DOC501", # broken with sphinx docs
"INP001", # no implicit namespaces here
"ISC001", # conflicts with formatter
"LOG015", # we require use of the root logger for reporting
"PLR0914", ## Too many local variables
"PLR0917", ## Too many positional arguments
"RUF067", # `__init__` module should only contain docstrings and re-exports
"S104", # Possible binding to all interfaces
"S404", # Using subprocess is alright.
"S603", # Using subprocess is alright.
]
lint.per-file-ignores."tests/**/*.py" = [
"D", # don't care about documentation in tests
"FBT", # don't care about booleans as positional arguments in tests
"INP001", # no implicit namespace
"PLR0913", # too many arguments to function definition
"PLR2004", # Magic value used in comparison, consider replacing with a constant variable
"S101", # asserts allowed in tests
"S603", # `subprocess` call: check for execution of untrusted input
]
lint.isort = { known-first-party = [
"tox",
"tests",
], required-imports = [
"from __future__ import annotations",
] }
lint.preview = true
[tool.codespell]
builtin = "clear,usage,en-GB_to_en-US"
write-changes = true
skip = "*.svg"
ignore-words = "ignore-words.txt"
count = true
[tool.pyproject-fmt]
max_supported_python = "3.14"
[tool.ty]
src.exclude = []
environment.python-version = "3.14"
environment.extra-paths = [ "typestubs" ]
[tool.pytest]
ini_options.testpaths = [
"tests",
]
ini_options.addopts = "--no-success-flaky-report"
ini_options.verbosity_assertions = 2
ini_options.markers = [
"integration: marks tests as integration tests requiring external services (deselect with '-m \"not integration\"')",
"slow: marks tests as slow (>1s) (deselect with '-m \"not slow\"')",
]
ini_options.filterwarnings = [
"error",
"ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning",
"ignore:unclosed file <_io.TextIOWrapper:ResourceWarning",
"ignore:subprocess .* is still running:ResourceWarning",
"ignore:os.path.commonprefix\\(\\) is deprecated:DeprecationWarning", # https://github.com/pygments/pygments/issues/3039 https://github.com/pypa/pyproject-hooks/issues/223
]
ini_options.tmp_path_retention_policy = "failed"
ini_options.timeout = 30
[tool.coverage]
run.parallel = true
run.plugins = [
"covdefaults",
]
paths.source = [
"src",
".tox*/*/lib/python*/site-packages",
".tox*/pypy*/site-packages",
".tox*\\*\\Lib\\site-packages",
"*/src",
"*\\src",
]
report.fail_under = 88
report.omit = [
"src/tox/config/cli/for_docs.py",
"tests/execute/local_subprocess/bad_process.py",
"tests/type_check/*",
]
html.show_contexts = true
html.skip_covered = false
[tool.towncrier]
name = "tox"
filename = "docs/changelog.rst"
directory = "docs/changelog"
title_format = false
issue_format = ":issue:`{issue}`"
template = "docs/changelog/template.jinja2"
type = [
{ directory = "breaking", name = "Backward incompatible changes", showcontent = true },
{ directory = "deprecation", name = "Deprecations (removal in next major release)", showcontent = true },
{ directory = "feature", name = "Features", showcontent = true },
{ directory = "bugfix", name = "Bug fixes", showcontent = true },
{ directory = "doc", name = "Improved documentation", showcontent = true },
{ directory = "packaging", name = "Packaging updates and notes for downstreams", showcontent = true },
{ directory = "contrib", name = "Contributor-facing changes", showcontent = true },
{ directory = "misc", name = "Miscellaneous internal changes", showcontent = true },
]