-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
51 lines (45 loc) · 1.4 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
[project]
name = "hsf"
version = "1.2.3"
description = "A simple yet exhaustive segmentation tool of the Hippocampal Subfields in T1w and T2w MRIs."
license = {text = "MIT License"}
readme = {file = "README.rst", content-type = "text/x-rst"}
authors = [
{name = "Clément POIRET", email = "[email protected]"}
]
keywords = ["mri", "brain", "hippocampus", "segmentation", "deep learning"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Image Processing"
]
urls = {homepage = "https://hippomnesis.dev", repository = "https://github.com/clementpoiret/ROILoc"}
requires-python = ">=3.9"
dependencies = [
"antspyx~=0.5.0",
"hydra-core~=1.3.0",
"rich>=11.0.0",
"roiloc>=0.4.1",
"torchio~=0.20.0",
"xxhash~=3.2.0",
"requests>=2.32.3",
"pytest~=8.0.0",
"coverage[toml]~=7.6.0",
]
[dependency-groups]
cpu = ["onnxruntime>=1.8.0"]
gpu = ["onnxruntime-gpu>=1.8.0"]
sparse = ["deepsparse>=1.4.0", "onnxruntime>=1.8.0"]
[project.scripts]
hsf = "hsf.factory:start"
deepsparse_support = "hsf.engines:print_deepsparse_support"
[tool.uv]
package = true
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.coverage.report]
omit = ["hsf/welcome.py"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"