forked from reghbali/pyalfe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 878 Bytes
/
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
[build-system]
requires = [
"setuptools >= 58.0.1"
]
build-backend = "setuptools.build_meta"
[project]
name = "pyalfe"
version = "0.0.1"
authors = [
{name = "Reza Eghbali", email="[email protected]"},
{email = "[email protected]"}
]
dependencies = [
"scipy",
"numpy",
"Click",
"dependency_injector",
"torch",
"pandas",
"nibabel",
"nilearn",
"matplotlib",
"nnunet @ git+https://github.com/reghbali/nnunet.git@main",
]
[project.optional-dependencies]
ants = ["antspyx"]
radiomics = ["Pyradiomics"]
docs = ["jupyter-book"]
[project.scripts]
pyalfe = "pyalfe.main:main"
[tool.setuptools.package-data]
pyalfe = ["*.ini"]
"pyalfe.templates" = ["oasis/*.nii.gz"]
[tool.ruff]
line-length = 88
target-version = 'py39'
select = [
'F',
'E',
'W',
'UP',
]
exclude = [
'.git',
'.ruff_cache',
'dist'
]