-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·51 lines (41 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
executable file
·51 lines (41 loc) · 1.03 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
[build-system]
requires=["setuptools","wheel"]
build_backend = "setuptools.build_meta"
[project]
name = "dive-mri"
version = "1.0.4"
description = "The Diffusion Visualization Explorer (DiVE) Tool"
keywords = ["Diffusion MRI", "along-tract visualization", "tractography", "white matter bundle"]
readme = "README.md"
license = { file="LICENSE.txt" }
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: All",
]
dependencies = [
'distinctipy>=1.2.3',
'fury>=0.9.0',
'matplotlib',
'nibabel',
'numpy<2.0.0',
'ordered-set',
'pandas',
'pyvista',
'trx-python>0.2.9',
'vtk>=9.3.0',
'webcolors',
'setuptools>=69.5',
'dipy',
'tslearn'
]
[project.urls]
Repository = "https://github.com/USC-LoBeS/dive"
[project.scripts]
dive = "dive.main:run_main"
[tool.setuptools.package-data]
dive = ["*.png"]
[tool.setuptools.packages.find]
include = ["dive*"]
exclude = ["LICENSES*", "example*", "images*"]