Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ include CONTRIBUTING.rst
include HISTORY.md
include LICENSE
include README.md
include requirements.txt
include make.bat
include Makefile
include conf.py
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# torch installation
--extra-index-url https://download.pytorch.org/whl/cu113; sys_platform != "darwin"
albumentations>=1.0.3
Click>=8.1.2
defusedxml>=0.7.1
Expand All @@ -20,7 +22,7 @@ scipy>=1.7.3
shapely>=1.8.1
sphinx>=4.3.2
tifffile>=2021.11.2
torch>=1.11.0, <1.12 #pytorch 1.12 has several issues
torch>=1.11.0
torchvision>=0.12.0
tqdm>=4.63.1
umap-learn>=0.5.2
Expand Down
30 changes: 2 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,34 +10,8 @@
with open("HISTORY.md") as history_file:
history = history_file.read()

requirements = [
"albumentations>=1.0.3",
"Click>=8.1.2",
"defusedxml>=0.7.1",
"flask>=2.1.1",
"glymur>=0.9.9",
"imagecodecs>=2021.11.20",
"matplotlib>=3.5.1",
"numpy>=1.21.5",
"opencv-python>=4.5.5",
"openslide-python>=1.1.2",
"pandas>=1.3.5",
"pillow>=9.0.1",
"pydicom>=2.3.0",
"pyyaml>=6.0",
"requests>=2.27.1",
"scikit-image>=0.19.2",
"scikit-learn>=1.0.2",
"scipy>=1.7.3",
"shapely>=1.8.1",
"tifffile>=2021.11.2",
"torch>=1.11.0",
"torchvision>=0.12.0",
"tqdm>=4.63.1",
"umap-learn>=0.5.2",
"wsidicom>=0.2.0",
"zarr>=2.11.1",
]
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read().splitlines()

setup_requirements = [
"pytest-runner",
Expand Down