forked from mahmoodlab/Patho-Bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (38 loc) · 891 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "patho-bench"
version = "0.0.1"
description = "High-throughput benchmarking for pathology foundation models."
readme = "README.md"
authors = [
{name = "Andrew Zhang"},
{name = "Anurag Vaidya"},
{name = "Guillaume Jaume"}
]
license = {text = "cc-by-nc-nd 4.0"}
requires-python = ">=3.10"
dependencies = [
"threadpoolctl",
"scikit-learn",
"scikit-survival",
"lovely-tensors",
"seaborn",
"datasets"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["patho_bench*"]
[tool.setuptools.package-data]
pathobench = ["*.md", "*.txt"]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"mypy"
]
[tool.setuptools.dynamic]
readme = {file = "README.md"}
[tool.setuptools.dynamic.dependencies]
file = ["requirements.txt"]