forked from AthenaEPI/dmipy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (105 loc) · 2.11 KB
/
Copy pathpyproject.toml
File metadata and controls
113 lines (105 loc) · 2.11 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
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sbi4dwi"
version = "0.1.0"
description = "Simulation-Based Inference for Diffusion-Weighted Imaging"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
authors = [
{ name = "Morgan Hough" },
{ name = "Rutger Fick", email = "fick.rutger@gmail.com" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"jax[cuda13]",
"dmipy",
"numpy",
"jaxlib",
"jaxopt",
"blackjax",
"furo",
"equinox",
"optimistix",
"lineax",
"diffrax",
"jaxtyping",
"jax-md",
"ipython",
"pypulseq",
"scico>=0.0.6",
"datalad",
"nibabel",
"h5py",
"dipy>=1.12.1",
"boto3>=1.42.30",
"optax>=0.2.6",
"scikit-image>=0.26.0",
"matplotlib>=3.10.8",
"cvxpy>=1.7.5",
"tqdm>=4.67.1",
"corner>=2.2.3",
"flowjax>=17.2.1",
"healpy>=1.19.0",
"scikit-learn>=1.8.0",
"torch>=2.1.0",
"torchvision>=0.16.0",
"timm>=1.0.24",
"opencv-python>=4.13.0.90",
"uguide",
"e3nn-jax>=0.20.8",
"numpyro>=0.19.0",
"vbjax>=0.0.18",
"ttax",
"sympy>=1.14.0",
"pandas>=3.0.0",
"tabulate>=0.9.0",
"annotated-types>=0.7.0",
"gpjax>=0.13.4",
"simpleitk>=2.5.3",
]
[project.urls]
Homepage = "https://github.com/m9h/dmipy"
[tool.hatch.build.targets.wheel]
packages = ["dmipy_jax"]
[project.scripts]
dmipy-report = "dmipy_jax.cli.bids_report:main"
[project.optional-dependencies]
test = [
"pytest",
"pyjulia",
"sybil",
"pytest-cov",
]
doc = [
"sphinx",
"furo",
"myst-parser",
"sphinx-copybutton",
"sphinxcontrib-bibtex",
"sphinx-autodoc-typehints",
]
[tool.pytest.ini_options]
addopts = "--cov=dmipy_jax --cov-report=term-missing"
testpaths = [
"dmipy_jax/tests",
"docs/tutorials",
]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.uv.sources]
uguide = { git = "https://github.com/mjallais/uGUIDE" }
[dependency-groups]
dev = [
"mdt>=1.2.7",
"pytest>=9.0.2",
]