forked from DigitalSlideArchive/superpixel-classification
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (33 loc) · 704 Bytes
/
pyproject.toml
File metadata and controls
36 lines (33 loc) · 704 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",
"setuptools_scm[toml]",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[project]
name = "SuperpixelClassification"
dynamic = ["version"]
readme = "README.rst"
classifiers = ["License :: OSI Approved :: Apache Software License"]
requires-python = ">=3.11"
dependencies = [
"girder-client",
"girder-slicer-cli-web",
"h5py",
"histomicstk",
"tenacity",
"al_bench@git+https://github.com/DigitalSlideArchive/ALBench.git",
]
[project.optional-dependencies]
tensorflow = [
"tensorflow>=2.6,<3.0",
"keras",
]
torch = [
"torch",
"torchvision",
"batchbald_redux",
"huggingface_hub",
"timm",
]