-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
202 lines (180 loc) · 4.02 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
[tool.poetry]
name = "TPTBox"
version = "0.0.0"
description = "A Torso Processing Toolbox capable of processing BIDS-compatible datasets, singular niftys, points of interests, segmentations, and much more."
authors = [
"Robert Graf <robert.graf@tum.de>",
"Hendrik Möller <hendrik.moeller@tum.de>",
]
repository = "https://github.com/Hendrik-code/TPTBox"
license = "GNU AFFERO GENERAL PUBLIC LICENSE v3.0, 19 November 2007"
readme = "README.md"
packages = [{ include = "TPTBox" }]
[tool.poetry.dependencies]
python = "^3.10 || ^3.11 || ^3.12"
pathlib = "*"
nibabel = "^5.2.0"
numpy = "^1.26.3"
typing-extensions = "^4.9.0"
scipy = "^1.12.0"
dataclasses = "*"
SimpleITK = "^2.3.1"
matplotlib = "^3.8.2"
dill = "^0.3.7"
scikit-image = "^0.22.0"
fill-voids = "^2.0.6"
connected-components-3d = "^3.12.3"
tqdm = "*"
joblib = "*"
scikit-learn = "*"
antspyx = "0.4.2"
[tool.poetry.dev-dependencies]
pytest = ">=8.1.1"
vtk = "*"
pre-commit = "*"
pyvista = "^0.43.2"
coverage = ">=7.0.1"
pytest-mock = "^3.6.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry-dynamic-versioning]
enable = true
[tool.ruff]
namespace-packages = ["datagen"]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
".toml",
]
line-length = 140
indent-width = 4
target-version = "py310"
[tool.ruff.lint]
## Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
## Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
## McCabe complexity (`C901`) by default.
#
select = [
"E",
"F",
"W",
"C901",
"I",
"N",
"UP",
"ASYNC",
"BLE",
"B",
"A",
"C4",
"ICN",
"G",
"INP",
"PIE",
"PYI",
#"RET",
"SIM",
"TID",
"INT",
"ARG",
#"PTH",
"TD005",
"FIX003",
"FIX004",
#"ERA", For clean up
#"D", Dockstring For clean up
#"ANN", Annoation For clean up
"PD",
"PGH",
"PL",
"TRY",
"FLY",
"NPY",
"AIR",
"PERF",
"FURB",
"RUF",
]
ignore = [
"RUF100",
"F401",
"BLE001",
"E501",
"N801",
"NPY002",
"PD002",
"PERF203",
"PTH123",
"PGH003",
"PLR0911",
"PLR0912",
"PLR0913",
"PLR0915",
"PLR2004",
"SIM105",
"TRY003",
"UP038",
"N999",
"E741",
"SIM118", # dictionay keys
"N802", # function name lowercase
"F811",
"N803",
]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
ignore-init-module-imports = true
extend-safe-fixes = ["RUF015", "C419", "C408", "B006"]
#unnecessary-iterable-allocation-for-first-element = true
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.lint.mccabe]
# Flag errors (`C901`) whenever the complexity level exceeds 5.
max-complexity = 20
[tool.ruff.format]
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Enable reformatting of code snippets in docstrings.
docstring-code-format = true
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
# Add this to your setting.json (user)
# Ctrl+shift+P settings json
#"[python]": {
# "editor.formatOnSave": true,
# "editor.defaultFormatter": "charliermarsh.ruff",
# "editor.codeActionsOnSave": {
# "source.fixAll": "explicit",
# "source.organizeImports": "never"
# }
# },
# "notebook.formatOnSave.enabled": true,
# "notebook.codeActionsOnSave": {
# "source.fixAll": false,
# "source.organizeImports": false
# },