-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
251 lines (222 loc) · 6.32 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
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
# See https://setuptools.readthedocs.io/en/latest/build_meta.html
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pystow"
version = "0.6.2-dev"
description = "Easily pick a place to store data for your Python code"
readme = "README.md"
authors = [
{ name = "Charles Tapley Hoyt", email = "[email protected]" }
]
maintainers = [
{ name = "Charles Tapley Hoyt", email = "[email protected]" }
]
# See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#classifiers
# Search tags using the controlled vocabulary at https://pypi.org/classifiers
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Pytest",
"Framework :: tox",
"Framework :: Sphinx",
"Natural Language :: English",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3 :: Only",
"Typing :: Typed",
]
keywords = [
"snekpack", # please keep this keyword to credit the cookiecutter-snekpack template
"cookiecutter",
"caching",
"file management"
]
# License Information. This can be any valid SPDX identifiers that can be resolved
# with URLs like https://spdx.org/licenses/MIT
# See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"click",
"requests",
"tqdm",
"typing-extensions",
]
[project.optional-dependencies]
tests = [
"pytest",
"coverage",
"requests_file",
]
docs = [
"sphinx>=8",
"sphinx-rtd-theme>=3.0",
"sphinx-click",
"sphinx_automodapi",
]
rdf = [
"rdflib",
]
xml = [
"lxml",
]
pandas = [
"pandas",
]
aws = [
"boto3",
]
# See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#urls
[project.urls]
"Bug Tracker" = "https://github.com/cthoyt/pystow/issues"
Homepage = "https://github.com/cthoyt/pystow"
Repository = "https://github.com/cthoyt/pystow.git"
Documentation = "https://pystow.readthedocs.io"
[tool.setuptools]
package-dir = { "" = "src" }
# This fix is here as a final tombstone before getting rid of setuptools and
# replacing with uv's build backend. It appears that the setuptools team hasn't
# prioritized fixing the fully breaking bug in metadata emission described in
# https://github.com/pypa/setuptools/issues/4759. Luckily, the license
# is inferred from the trove classifier for MIT license.
license-files = []
[tool.setuptools.packages.find]
# this implicitly sets `packages = ":find"`
where = ["src"] # list of folders that contain the packages (["."] by default)
# See https://setuptools.pypa.io/en/latest/userguide/datafiles.html
[tool.setuptools.package-data]
"*" = ["*.*"]
[project.scripts]
pystow = "pystow.cli:main"
[tool.cruft]
skip = [
"**/__init__.py",
"tests/*"
]
# MyPy, see https://mypy.readthedocs.io/en/stable/config_file.html
[tool.mypy]
plugins = [
]
# Doc8, see https://doc8.readthedocs.io/en/stable/readme.html#ini-file-usage
[tool.doc8]
max-line-length = 120
# Pytest, see https://docs.pytest.org/en/stable/reference/customize.html#pyproject-toml
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
# Coverage, see https://coverage.readthedocs.io/en/latest/config.html
[tool.coverage.run]
branch = true
source = [
"pystow",
]
omit = [
"tests/*",
"docs/*",
]
[tool.coverage.paths]
source = [
"src/pystow",
".tox/*/lib/python*/site-packages/pystow",
]
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"raise NotImplementedError",
"if __name__ == \"__main__\":",
"if TYPE_CHECKING:",
"def __str__",
"def __repr__",
]
[tool.ruff]
line-length = 100
extend-include = ["*.ipynb"]
[tool.ruff.lint]
# See https://docs.astral.sh/ruff/rules
extend-select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"C90", # mccabe
"I", # isort
"UP", # pyupgrade
"D", # pydocstyle
"DOC", # pydoclint
"B", # bugbear
"S", # bandit
"T20", # print
"N", # pep8 naming
"ERA", # eradicate commented out code
"NPY", # numpy checks
"RUF", # ruff rules
"C4", # comprehensions
]
ignore = [
"D105", # Missing docstring in magic method
"E203", # Black conflicts with the following
"S301", # yolo pickle
"S320", # yolo lxml
]
# See https://docs.astral.sh/ruff/settings/#per-file-ignores
[tool.ruff.lint.per-file-ignores]
# Ignore security issues in the version.py, which are inconsistent
"src/pystow/version.py" = ["S603", "S607"]
# Ignore commented out code in Sphinx configuration file
"docs/source/conf.py" = ["ERA001"]
# Prints are okay in notebooks
"notebooks/**/*.ipynb" = ["T201"]
[tool.ruff.lint.pydocstyle]
convention = "pep257"
[tool.ruff.lint.isort]
relative-imports-order = "closest-to-furthest"
known-third-party = [
"tqdm",
]
known-first-party = [
"pystow",
"tests",
]
[tool.ruff.format]
# see https://docs.astral.sh/ruff/settings/#format_docstring-code-format
docstring-code-format = true
[tool.bumpversion]
current_version = "0.6.2-dev"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+(?P<build>[0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?"
serialize = [
"{major}.{minor}.{patch}-{release}+{build}",
"{major}.{minor}.{patch}+{build}",
"{major}.{minor}.{patch}-{release}",
"{major}.{minor}.{patch}",
]
commit = true
tag = false
[tool.bumpversion.parts.release]
optional_value = "production"
first_value = "dev"
values = [
"dev",
"production",
]
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = "version = \"{current_version}\""
replace = "version = \"{new_version}\""
[[tool.bumpversion.files]]
filename = "docs/source/conf.py"
search = "release = \"{current_version}\""
replace = "release = \"{new_version}\""
[[tool.bumpversion.files]]
filename = "src/pystow/version.py"
search = "VERSION = \"{current_version}\""
replace = "VERSION = \"{new_version}\""