-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.1 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "neurite"
version = "0.2"
description = "Neural networks toolbox focused on medical image analysis."
requires-python = ">=3.8"
readme = "README.md"
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
authors = [
{ name = "Adrian V. Dalca" },
{ name = "Etienne Chollet", email = "etiennepchollet@gmail.com" },
{ name = "Malte Hoffmann" },
{ name = "Andrew Hoopes" }
]
maintainers = [
{ name = "Etienne Chollet", email = "etiennepchollet@gmail.com" }
]
dependencies = [
"torch",
"numpy",
"einops",
"pystrum",
"nibabel",
"scipy",
"matplotlib",
"tqdm",
]
keywords = [
"python",
"pytorch",
"medical-imaging",
"segmentation",
"medical-image-computing",
"nibabel",
]
[project.urls]
GitHub = "https://github.com/adalca/neurite"
PyPi = "https://pypi.org/project/neurite/0.2/"
[tool.pyright]
reportRedeclaration = false