File: pyproject.toml

package info (click to toggle)
python-acres 0.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 296 kB
  • sloc: python: 194; makefile: 11
file content (96 lines) | stat: -rw-r--r-- 1,930 bytes parent folder | download
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
[project]
name = "acres"
description = "Access resources on your terms"
authors = [
  {name = "The NiPreps Developers", email = "nipreps@gmail.com"}
]
dependencies = [
  "importlib_resources >=5.7; python_version < '3.10'",
]
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"]

[project.urls]
Documentation = "https://nipreps-acres.readthedocs.io/en/latest/"
Repository = "https://github.com/nipreps/acres"
Issues = "https://github.com/nipreps/acres/issues"
Changelog = "https://nipreps-acres.readthedocs.io/en/latest/changelog.html"

[dependency-groups]
doc = [
    "furo>=2024.8.6",
    "myst-parser>=3.0.1",
    "sphinx>=7.4.7",
]
test = [
    "coverage[toml]>=7.8.2",
    "pytest>=8.3.5",
    "pytest-cov>=6.1.1",
]
types = [
    "importlib-resources>=6.5.2 ; python_full_version < '3.10'",
    "mypy>=1.16.0",
    "pyright>=1.1.401",
]

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.pdm]
distribution = true

[tool.pdm.build]
source-includes = [
  "tests/",
  "tox.ini",
  "uv.lock",
]

[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",
]

[tool.coverage.report]
exclude_also = [
  "if.*TYPE_CHECKING:",
]

[tool.codespell]
skip = [
  "_build",
]