-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (19 loc) · 755 Bytes
/
pyproject.toml
File metadata and controls
23 lines (19 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gigapath"
version = "0.1.0"
description = "Prov-GigaPath: A whole-slide foundation model for digital pathology from real-world data"
readme = "README.md"
requires-python = ">=3.9"
[project.urls]
"Homepage" = "https://github.com/prov-gigapath/prov-gigapath"
"Bug Tracker" = "https://github.com/prov-gigapath/prov-gigapath/issues"
[tool.setuptools.packages.find]
include = ["gigapath", "gigapath.*"]
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*", "outputs*"]
[tool.wheel]
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*", "outputs*"]
[tool.black]
line-length = 200