-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (57 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
61 lines (57 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "osipi-ivim"
version = "0.1.0"
description = "OSIPI TF2.4 IVIM-MRI Code Collection"
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Oscar Jalnefjord", email = "oscar.jalnefjord@gu.se"},
{name = "Ivan A. Rashid"},
{name = "Daan Kuppens"},
{name = "Merel M. van der Thiel"},
{name = "Petra J. van Houdt"},
{name = "Paulien H.M. Voorter"},
{name = "Eric T. Peterson"},
{name = "Oliver J. Gurney-Champion", email = "o.j.gurney-champion@amsterdamumc.nl"},
]
dependencies = [
"numpy",
"scipy",
"nibabel",
"torch",
"torchio",
"joblib",
"dipy",
"cvxpy",
"nlopt",
"tqdm",
"pandas",
"statsmodels",
"ivimnet",
"super-ivim-dc>1.0.0",
"zenodo-get",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-json-report",
]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
plot = [
"matplotlib",
"scienceplots",
]
all = [
"osipi-ivim[test,docs,plot]",
]
[project.urls]
Repository = "https://github.com/OSIPI/TF2.4_IVIM-MRI_CodeCollection"
[tool.setuptools.packages.find]
where = ["src"]