-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
209 lines (183 loc) · 4.25 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "fmripost-rapidtide"
description = 'Run Rapidtide on fMRIPrep derivatives'
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = []
authors = [{name = "The NiPreps Developers", email = "[email protected]"}]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fmriprep @ git+https://github.com/nipreps/fmriprep.git@master",
"nipype >= 1.8.5",
"nireports @ git+https://github.com/nipreps/nireports.git@main",
"nitransforms == 23.0.1",
"niworkflows @ git+https://github.com/nipreps/niworkflows.git@master",
"pybids >= 0.15.6",
"rapidtide == 2.9.5.2",
"sdcflows @ git+https://github.com/nipreps/sdcflows.git@master",
"smriprep @ git+https://github.com/nipreps/smriprep.git@master",
"typer",
]
dynamic = ["version"]
[project.optional-dependencies]
doc = [
"doctest-ignore-unicode",
"pydot >=1.2.3",
"pydotplus",
"recommonmark",
"sphinx >= 4.2.0",
"sphinx-argparse",
"sphinx-markdown-tables",
"sphinx_rtd_theme",
"sphinxcontrib-apidoc",
"sphinxcontrib-bibtex",
"svgutils",
]
test = [
"coverage",
"pytest",
"pytest-cov",
"pytest-env",
]
# Aliases
all = ["fmripost_rapidtide[doc,test]"]
[project.urls]
Documentation = "https://github.com/nipreps/fmripost-rapidtide#readme"
Issues = "https://github.com/nipreps/fmripost-rapidtide/issues"
Source = "https://github.com/nipreps/fmripost-rapidtide"
[project.scripts]
fmripost-rapidtide = "fmripost_rapidtide.cli.run:main"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/fmripost_rapidtide/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"] # No longer needed in sdist
[tool.hatch.build.targets.wheel]
packages = ["src/fmripost_rapidtide"]
[tool.hatch.envs.default]
dependencies = [
"pytest",
"pytest-cov",
]
[tool.hatch.envs.default.scripts]
cov = "pytest --cov-report=term-missing --cov-config=pyproject.toml --cov=src/fmripost_rapidtide --cov=tests {args}"
no-cov = "cov --no-cov {args}"
[tool.hatch.envs.type]
detached = true
dependencies = [
"mypy",
"nibabel",
"typer",
"pytest",
]
[tool.hatch.envs.type.scripts]
check = "mypy . {args}"
[tool.hatch.envs.style]
detached = true
dependencies = [
"black",
"isort",
"ruff",
]
[tool.hatch.envs.style.scripts]
fix = [
"black src/",
"ruff check --fix src/",
"isort src/",
]
check = [
"black --check --diff src/",
"ruff check --diff src/",
"isort --check --diff src/",
]
[[tool.hatch.envs.test.matrix]]
python = ["38", "39", "310", "311"]
[tool.coverage.run]
branch = true
parallel = true
omit = [
"src/fmripost_rapidtide/__about__.py",
]
[tool.coverage.report]
exclude_lines = [
"no cov",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]
# Disable black
[tool.black]
exclude = ".*"
[tool.ruff]
line-length = 99
[tool.ruff.lint]
extend-select = [
"F",
"E",
"W",
"I",
"UP",
"YTT",
"S",
"BLE",
"B",
"A",
# "CPY",
"C4",
"DTZ",
"T10",
# "EM",
"EXE",
"FA",
"ISC",
"ICN",
"PT",
"Q",
]
ignore = [
"S311", # We are not using random for cryptographic purposes
"ISC001",
"S603",
"PT023",
"S113",
"S202",
"S602",
"B904",
]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
[tool.ruff.lint.extend-per-file-ignores]
"*/test_*.py" = ["S101"]
"fmriprep/utils/debug.py" = ["A002", "T100"]
"docs/conf.py" = ["A001"]
"docs/sphinxext/github_link.py" = ["BLE001"]
[tool.ruff.format]
quote-style = "single"
[tool.isort]
profile = "black"
multi_line_output = 3
src_paths = ["isort", "test"]
known_local_folder = ["fmripost_rapidtide"]
[tool.pytest.ini_options]
addopts = '-m "not integration"'
markers = [
"integration: mark test as an integration test",
"ds005115_deriv_only: ds005115 with full fMRIPrep and derivatives only",
"ds005115_deriv_and_raw: ds005115 with full fMRIPrep and raw BIDS",
"ds005115_resampling_and_raw: ds005115 with resampling-level fMRIPrep and raw BIDS",
]
env = [
"RUNNING_PYTEST = 1",
]