-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
123 lines (115 loc) · 2.5 KB
/
pyproject.toml
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
[build-system]
build-backend = "maturin"
requires = [
"maturin>=1.7.4",
]
[project]
name = "tox-toml-fmt"
description = "Format your pyproject.toml file"
readme = "README.md"
keywords = [
"format",
"pyproject",
]
license.file = "LICENSE.txt"
authors = [
{ name = "Bernat Gabor", email = "[email protected]" },
]
requires-python = ">=3.9"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = [
"version",
]
dependencies = [
"toml-fmt-common==1.0.1",
]
urls."Bug Tracker" = "https://github.com/tox-dev/toml-fmt/issues"
urls."Changelog" = "https://github.com/tox-dev/toml-fmt/blob/main/tox-toml-fmt/CHANGELOG.md"
urls.Documentation = "https://github.com/tox-dev/toml-fmt/"
urls."Source Code" = "https://github.com/tox-dev/toml-fmt"
scripts.tox-toml-fmt = "tox_toml_fmt.__main__:runner"
[dependency-groups]
dev = [
{ include-group = "docs" },
{ include-group = "fix" },
{ include-group = "test" },
{ include-group = "type" },
]
test = [
"covdefaults>=2.3",
"pytest>=8.3.2",
"pytest-cov>=5",
"pytest-mock>=3.14",
]
type = [
"mypy==1.11.2",
"types-cachetools>=5.5.0.20240820",
"types-chardet>=5.0.4.6",
{ include-group = "test" },
]
docs = [
"furo>=2024.8.6",
"sphinx>=8.0.2",
"sphinx-argparse-cli>=1.18.2",
"sphinx-autodoc-typehints>=2.4.4",
"sphinx-copybutton>=0.5.2",
"sphinx-inline-tabs>=2023.4.21",
]
fix = [
"pre-commit-uv>=4.1.3",
]
pkg-meta = [
"check-wheel-contents>=0.6",
"twine>=5.1.1",
"uv>=0.4.17",
]
[tool.maturin]
bindings = "pyo3"
manifest-path = "Cargo.toml"
module-name = "tox_toml_fmt._lib"
python-source = "src"
strip = true
include = [
"rust-toolchain.toml",
]
[tool.cibuildwheel]
skip = [
"pp*",
"*musl*",
]
[tool.pyproject-fmt]
max_supported_python = "3.13"
[tool.pytest]
ini_options.testpaths = [
"tests",
]
[tool.coverage]
html.show_contexts = true
html.skip_covered = false
paths.source = [
"src",
".tox/*/.venv/lib/*/site-packages",
".tox\\*\\.venv\\Lib\\site-packages",
".tox/*/lib/*/site-packages",
".tox\\*\\Lib\\site-packages",
"**/src",
"**\\src",
]
report.fail_under = 100
run.parallel = true
run.plugins = [
"covdefaults",
]
[tool.mypy]
show_error_codes = true
strict = true