forked from DigitalSlideArchive/HistomicsStream
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ENH: Make tensorflow,torch,zarr packages optional
- Loading branch information
Showing
3 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,19 +8,28 @@ readme = "README.md" | |
requires-python = ">=3.6" | ||
authors = [{name = "Lee A. Newberg", email = "[email protected]"}] | ||
maintainers = [{name = "Lee A. Newberg", email = "[email protected]"}] | ||
keywords = ["tensorflow", "whole slide image", "stream", "machine learning"] | ||
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", | ||
] | ||
dynamic = ["version", "description"] | ||
|
||
[project.urls] | ||
Source = "https://github.com/DigitalSlideArchive/HistomicsStream" | ||
|