forked from MASILab/deep_fixel
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (45 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
48 lines (45 loc) · 1.12 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deep_fixel"
version = "1.2.0"
authors = [
{name = "Adam Saunders", email = "adam.m.saunders@vanderbilt.edu"}
]
description = "Deep learning-based identification of crossing fiber bundle elements"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"cmcrameri>=1.9",
"dipy>=1.10.0",
"h5py==3.11.0",
"healpy==1.16.6",
"joblib==1.4.2",
"line-profiler>=4.2.0",
"matplotlib==3.9.0",
"nibabel==5.2.1",
"numpy<2",
"pandas==2.2.2",
"pygsp==0.5.1",
"pyqt6>=6.9.0",
"pyyaml==6.0.1",
"scipy==1.13.0",
"seaborn>=0.13.2",
"statannotations>=0.7.2",
"tensorboard==2.16.2",
"torch==2.3.0",
"torchaudio==2.3.0",
"torchvision==0.18.0",
"tqdm>=4.67.1",
"trimesh>=4.6.4",
"wandb>=0.19.7",
]
[project.scripts]
deepfixel = "deep_fixel.scripts.inference:main"
[project.urls]
Homepage = "https://github.com/MASILab/spherical_deep_fixel"