-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 840 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "patho-bench-cli"
version = "0.2.0"
description = "Unified downloader for Patho-Bench datasets"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiofiles>=24.1.0",
"aiohttp>=3.9.0",
"aiolimiter>=1.1.0",
"datasets>=3.6.0",
"dotenv>=0.9.9",
"ebrains_drive>=0.6.2",
"huggingface-hub>=1.2.1",
"kaggle>=1.8.2",
"openslide-bin>=4.0.0.11",
"openslide-python>=1.4.3",
"pandas>=2.3.3",
"requests>=2.28.0",
"synapseclient>=4.10.0",
"tcia-utils>=3.2.1",
"tenacity>=8.0.0",
]
[project.scripts]
patho-bench-cli = "patho_bench_cli.cli:main"
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
[tool.setuptools.packages.find]
include = ["patho_bench_cli*"]