[2d5d04]: / pyproject.toml

Download this file

27 lines (22 with data), 474 Bytes

 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
[project]
name = "hippodeep"
version="1.0"
requires-python=">=3.8"
description="quick segmentation of the hippocampus from T1 MRI images"
dependencies = [
"torch",
"nibabel",
"scipy"
]
[python.pip]
extra-index-urls = ["https://download.pytorch.org/whl/cpu"]
[project.scripts]
hippodeep = "hippodeep:main"
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu" },
]