-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (60 loc) · 1.68 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "clinica-pydra-ants"
version = "0.1.1"
description = "Pydra tasks for ANTs designed for Clinica"
readme = "README.md"
requires-python = ">=3.8"
license = "Apache-2.0"
keywords = [
"ants",
"neuroimaging",
"pydra",
"registration",
]
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.22",
]
[project.urls]
Documentation = "https://github.com/aramis-lab/clinica-pydra-ants#readme"
Issues = "https://github.com/aramis-lab/clinica-pydra-ants/issues"
Source = "https://github.com/aramis-lab/clinica-pydra-ants"
[tool.hatch.build.targets.wheel]
only-include = ["src/pydra/tasks/ants"]
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.pytest.ini_options]
minversion = "6.0"
addopts = [
"--doctest-modules",
"--doctest-continue-on-failure",
]
pythonpath = ["src"]
testpaths = ["src"]
[tool.ruff.lint]
ignore = ["FBT001", "FA100"]