-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
62 lines (53 loc) · 1.22 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
[project]
name = "acres"
description = "Access resources on your terms"
authors = [
{name = "The NiPreps Developers", email = "[email protected]"}
]
dependencies = [
"importlib_resources >=5.7; python_version < '3.11'",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "Apache-2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.build]
source-includes = [
"tests/",
"tox.ini",
]
[tool.pdm.version]
source = "scm"
[tool.ruff]
line-length = 99
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.format]
quote-style = "single"
[tool.coverage.run]
branch = true
parallel = true
omit = [
# Temporary zipimport module generated during tests
"*/mymodule.zip/*",
]
[tool.coverage.paths]
source = [
"src/acres",
"**/site-packages/acres",
]