-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 919 Bytes
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 919 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
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "huetuber"
version = "0.1.0"
description = "GPU-accelerated stain normalization for histopathology images"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{name = "Yimin Zheng", email = "yzheng@cemm.at"},
]
dependencies = [
"cucim>=23.10.0",
"cupy-cuda12x>=13.6.0",
"opencv-python>=4.12.0.88",
"pillow>=11.3.0",
"scipy>=1.16.2",
]
[dependency-groups]
benchmark = [
"imageio[pillow]>=2.37.0",
"matplotlib>=3.10.6",
"mpl-fontkit>=0.5.1",
"pandas>=2.3.2",
"scikit-image>=0.25.2",
"seaborn>=0.13.2",
"torchstain>=1.4.1",
"unhcrpyplotstyle>=0.1.3",
]
dev = [
"ipykernel>=6.30.1",
"opencv-python-headless>=4.12.0.88",
"prek>=0.1.6",
"pytest>=8.4.2",
"torch>=2.8.0",
"torchvision>=0.23.0",
]
[tool.uv]
default-groups = ["dev", "benchmark"]