-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
executable file
·57 lines (52 loc) · 1.41 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
52
53
54
55
56
57
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "stamp"
version = "1.1.1"
authors = [
{ name="Omar El Nahhas", email="[email protected]" },
{ name="Marko van Treeck", email="[email protected]" },
{ name="Georg Wölflein", email="[email protected]" },
{ name="Tim Lenz", email="[email protected]" },
{ name="Laura Žigutytė", email="[email protected]" },
{ name="Cornelius Kummer", email="[email protected]" },
]
description = "A protocol for Solid Tumor Associative Modeling in Pathology"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas~=2.1",
"matplotlib~=3.8",
"scikit-learn~=1.3",
"tqdm~=4.66",
"fastai~=2.7",
"torch~=2.2",
"torchvision~=0.15",
"h5py~=3.10",
"jaxtyping~=0.2",
"einops~=0.7",
"omegaconf~=2.3",
"openslide-python~=1.3",
"opencv-python~=4.8",
"numba~=0.58",
"gdown~=4.7",
"openpyxl~=3.1",
"UNI@git+https://github.com/mahmoodlab/UNI.git"
]
[project.scripts]
"stamp" = "stamp.cli:main"
[project.urls]
"Homepage" = "https://github.com/KatherLab/STAMP"
"Bug Tracker" = "https://github.com/KatherLab/STAMP/issues"
[tool.hatch.build]
include = [
"stamp/**/*"
]