-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathpyproject.toml
125 lines (112 loc) · 2.7 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "clinica"
version = "0.9.3"
description = "Software platform for clinical neuroimaging studies"
license = "MIT"
authors = [
{ name = "ARAMIS Lab" },
]
maintainers = [
{ name = "Clinica developers", email = "[email protected]>" },
]
readme = "README.md"
requires-python = ">=3.9,<3.13"
keywords = [
"bids",
"image processing",
"machine learning",
"neuroimaging",
"neuroscience"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Image Processing"
]
dependencies = [
"nibabel (>=5)",
"nipype (>=1.8.6)",
"argcomplete (>=1.9.4,<2)",
"pandas (>=2,<3)",
"jinja2 (>=3,<4)",
"xvfbwrapper",
"numpy (>=2,<3)",
"scikit-learn (>=1.0,<2)",
"nilearn (>=0.10.3,<1.0)",
"colorlog (>=5,<6)",
"xgboost",
"scipy (>=1.12,<2)",
"matplotlib",
"scikit-image",
"pydicom",
"networkx",
"click",
"click-option-group (>=0.5,<1.0)",
"xlrd",
"openpyxl",
"fsspec",
"pydra-nipype1",
"pydra (>=0.22,<1.0)",
"pybids (>=0.16,<1.0)",
"joblib (>=1.2.0,<2.0)",
"attrs (>=20.1.0)",
"cattrs",
"pydra-bids (>=0.0.10)",
"pydra-freesurfer (>=0.0.9)",
"pydra-petpvc (>=0.0.4)",
"pydra-fsl (>=0.0.22)",
"antspyx (>=0.4.2)",
"rich (>=13.8.0)",
]
[project.urls]
homepage = "https://www.clinica.run"
documentation = "https://aramislab.paris.inria.fr/clinica/docs/public/latest"
sources = "https://github.com/aramis-lab/clinica"
issues = "https://github.com/aramis-lab/clinica/issues"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pytest-random-order = "*"
pytest-timeout = "*"
pytest-xdist = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.1"
mkdocs-material = ">=7.1.8"
pymdown-extensions = "*"
[tool.poetry.group.optional.dependencies]
brainstat = "^0.4.2"
[project.scripts]
clinica = "clinica.cmdline:main"
[tool.ruff]
target-version = "py38"
line-length = 88
[tool.ruff.lint]
select = [
"E",
"W",
"I001",
# "PTH",
]
ignore = ["E203", "E501"]
[tool.ruff.lint.isort]
known-first-party = ["clinica"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.codespell]
summary = ''
skip = ".git,LICENSE.txt,ignore_words.txt,*.m"
quiet-level = 3
ignore-words = "ignore_words.txt"