-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
83 lines (74 loc) · 1.94 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydra-anat"
dynamic = ["version"]
description = "Anatomical processing workflow in Pydra"
readme = "README.md"
requires-python = ">=3.7"
license = "MPL-2.0"
keywords = [
"bias-field-correction",
"brain-template",
"image-registration",
"neuroimaging",
"pydra",
"workflow",
]
authors = [
{ name = "Ghislain Vaillant", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
dependencies = [
"pydra>=0.22",
"pydra-fsl==0.0.19",
"typer>=0.9.0",
]
[project.urls]
Documentation = "https://github.com/ghisvail/pydra-anat#readme"
Issues = "https://github.com/ghisvail/pydra-anat/issues"
Source = "https://github.com/ghisvail/pydra-anat"
[project.scripts]
pydra-anat = "pydra_anat.cli:app"
[tool.hatch.version]
path = "src/pydra_anat/__about__.py"
[tool.hatch.build.targets.wheel]
only-include = ["src/pydra_anat"]
sources = ["src"]
[tool.hatch.envs.lint]
detached = true
dependencies = [
"black",
"isort",
"tomli",
]
[tool.hatch.envs.lint.scripts]
all = [
"black --check --diff {args:src}",
"isort --check --diff {args:src}",
]
fix = [
"black --quiet {args:src}",
"isort --quiet {args:src}",
]
[tool.black]
target-version = ["py37"]
line-length = 120
[tool.isort]
profile = "black"