-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 950 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
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mipcandy"
version = "1.1.2-alpha.1"
description = "A Candy for Medical Image Processing"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Project Neura", email = "central@projectneura.org" }
]
dependencies = [
"pyyaml", "torch", "torchvision", "ptflops", "numpy", "safetensors", "SimpleITK", "matplotlib", "rich", "pandas",
"requests", "psutil"
]
[project.optional-dependencies]
standard = ["plotly"]
all = ["plotly", "scikit-image", "mipcandy-bundles"]
[tool.hatch.build.targets.sdist]
only-include = ["mipcandy"]
[tool.hatch.build.targets.wheel]
packages = ["mipcandy"]
[project.urls]
Homepage = "https://mipcandy.projectneura.org"
Documentation = "https://mipcandy-docs.projectneura.org"
Repository = "https://github.com/ProjectNeura/MIPCandy"
[project.scripts]
mipcandy = "mipcandy:__entry__"