-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.61 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "elikopy"
version = "0.4.4"
description = "A set of tools for analysing dMRI"
authors = [
"qdessain <[email protected]>",
"msimon <[email protected]>",
"ndelinte <[email protected]>"
]
license = "AGPL-3.0" # Update this to match the exact SPDX identifier if different
readme = "README.md"
homepage = "https://github.com/Hyedryn/elikopy"
repository = "https://github.com/Hyedryn/elikopy"
documentation = "https://github.com/Hyedryn/elikopy" # Update if you have specific documentation URL
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
'Programming Language :: Python :: 3 :: Only',
"Intended Audience :: Science/Research",
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
numpy = "^1.24"
dipy = "^1.7.0"
torch = "^2.0.1"
pypdf = "^3.4"
fpdf = "^1.7.2"
matplotlib = "^3.7"
future = ">=0.15"
unravel-python = "^1.4"
scikit-image = ">=0.20"
scipy = "^1.10"
pandas = "^1.3"
torchvision = ">=0.15"
scikit-learn = "^1.3"
nibabel = "^5.0.0"
numba = ">=0.57.0"
surfa = ">=0.5.0"
microstructure-fingerprinting-rensonnetg = { git = "https://github.com/rensonnetg/microstructure_fingerprinting.git" }
dmipy = { git = "https://github.com/Hyedryn/dmipy.git" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
sphinx = "^3.0" # Use the latest version compatible with your project
sphinx-autodoc-typehints = "^1.11" # Optional, for better type hint support
sphinx-rtd-theme = ">=0.5" # Optional, for nice docs rendering