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.
Merge pull request DigitalSlideArchive#135 from Leengit/optional_pack…
…ages ENH: Make tensorflow, torch, and zarr packages optional Also, deprecate Python 3.6 and 3.7 and add Python 3.10 and 3.11 for GitHub build and testing. Also, fix the download links for test image and image mask.
- Loading branch information
Showing
7 changed files
with
30 additions
and
16 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
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" | ||
|
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