forked from DigitalSlideArchive/HistomicsStream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (34 loc) · 865 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
[build-system]
requires = ["flit_core >=3.4,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "histomics_stream"
readme = "README.md"
requires-python = ">=3.6"
authors = [{name = "Lee A. Newberg", email = "lee.newberg@kitware.com"}]
maintainers = [{name = "Lee A. Newberg", email = "lee.newberg@kitware.com"}]
keywords = ["tensorflow", "torch", "whole slide image", "stream", "machine learning"]
classifiers = ["License :: OSI Approved :: Apache Software License"]
dependencies = [
"imagecodecs",
"itk",
"numcodecs",
"numpy",
"scipy",
]
dynamic = ["version", "description"]
[project.optional-dependencies]
tensorflow = [
"tensorflow<3.0.0",
"keras",
]
torch = [
"torch<2.0.0",
]
zarr = [
"zarr",
]
[project.urls]
Source = "https://github.com/DigitalSlideArchive/HistomicsStream"
[project.scripts]
flit = "flit:main"