-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (30 loc) · 935 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
[build-system]
requires = ["setuptools","wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "unravel-python"
authors = [
{name = "Nicolas Delinte", email = "nicolas.delinte@uclouvain.be"},
]
readme="README.md"
description = "Implementation of UNRAVEL"
keywords = ["tractography", "multi-fixel"]
license = {text = "GNU General Public License v3.0"}
classifiers = ['Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python',
]
dependencies = ['dipy',
'scikit-image',
'scikit-learn'
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "unravel.__version__"}
[project.optional-dependencies]
viz = ["pyvista"]
[project.urls]
"GitHub" = "https://github.com/DelinteNicolas/UNRAVEL"
"Documentation" = "https://unravel.readthedocs.io/en/latest/"
[tool.setuptools.packages.find]
where = ["src"]