-
Notifications
You must be signed in to change notification settings - Fork 76
/
pyproject.toml
118 lines (105 loc) · 2.42 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
[tool.poetry]
name = "clinica"
version = "0.9.2"
description = "Software platform for clinical neuroimaging studies"
license = "MIT"
authors = ["ARAMIS Lab"]
maintainers = ["Clinica developers <[email protected]>"]
readme = "README.md"
homepage = "https://www.clinica.run"
repository = "https://github.com/aramis-lab/clinica.git"
documentation = "https://aramislab.paris.inria.fr/clinica/docs/public/latest"
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"
]
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
nibabel = "^5"
nipype = ">=1.8.6"
argcomplete = "^1.9.4"
pandas = "^2"
jinja2 = "^3"
xvfbwrapper = "*"
numpy = "^2"
scikit-learn = "^1.0"
nilearn = "^0.10.3"
colorlog = "^5"
xgboost = "*"
scipy = "^1.12"
matplotlib = "*"
scikit-image = "*"
pydicom = "*"
networkx = "^2"
click = "^8"
click-option-group = "^0.5"
xlrd = "*"
openpyxl = "*"
fsspec = "*"
pydra-nipype1 = "^0.2"
pydra = "^0.22"
pybids = "^0.16"
joblib = "^1.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"
[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"
[tool.poetry.scripts]
clinica = "clinica.cmdline:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[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"