-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
81 lines (72 loc) · 2.05 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clinica-pydra-freesurfer"
version = "0.1.0"
description = "Pydra tasks for FreeSurfer designed for Clinica"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = [
"pydra",
"freesurfer",
"neuroimaging",
]
authors = [
{name = "Ghislain Vaillant", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"attrs >=22.1.0",
"pydra >=0.21",
]
[project.urls]
Documentation = "https://aramis-lab.github.io/clinica-pydra-freesurfer"
Issues = "https://github.com/aramis-lab/clinica-pydra-freesurfer/issues"
Repository = "https://github.com/aramis-lab/clinica-pydra-freesurfer"
[tool.hatch.build.targets.wheel]
only-include = ["src/pydra/tasks/freesurfer"]
sources = ["src"]
[tool.hatch.envs.default]
dependencies = ["pytest"]
[tool.hatch.envs.default.scripts]
test = "pytest {args}"
[[tool.hatch.envs.default.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
[tool.hatch.envs.docs]
template = "docs"
dependencies = [
"pydata-sphinx-theme >=0.13",
"sphinx <7",
"sphinx-autobuild",
"sphinx-pyproject",
]
[tool.hatch.envs.docs.scripts]
build = "sphinx-build docs docs/_build/html -b {args:html}"
serve = "sphinx-autobuild docs docs/_build/html {args}"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--doctest-modules",
"--doctest-continue-on-failure",
]
pythonpath = ["src"]
testpaths = ["src"]
[tool.ruff.lint]
ignore = ["FA"]
[tool.ruff.lint.extend-per-file-ignores]
"docs/conf.py" = ["INP001", "A001"]