a b/pyproject.toml
1
[project]
2
name = "hippodeep"
3
version="1.0"
4
requires-python=">=3.8"
5
description="quick segmentation of the hippocampus from T1 MRI images"
6
dependencies = [
7
  "torch",
8
  "nibabel",
9
  "scipy"
10
]
11
12
[python.pip]
13
extra-index-urls = ["https://download.pytorch.org/whl/cpu"]
14
15
[project.scripts]
16
hippodeep = "hippodeep:main"
17
18
[[tool.uv.index]]
19
name = "pytorch-cpu"
20
url = "https://download.pytorch.org/whl/cpu"
21
explicit = true
22
23
[tool.uv.sources]
24
torch = [
25
  { index = "pytorch-cpu" },
26
]