forked from DIAGNijmegen/pathology-whole-slide-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 911 Bytes
/
setup.py
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
from setuptools import setup, find_packages
version = {}
with open("wholeslidedata/version.py") as fp:
exec(fp.read(), version)
setup(
name="wholeslidedata",
version=version['__version__'],
author="Mart van Rijthoven",
author_email="[email protected]",
package_data={"": ["*.yml"]},
packages=find_packages(exclude=("tests", "notebooks", "docs")),
url="https://github.com/DIAGNijmegen/pathology-whole-slide-data",
license="LICENSE.txt",
install_requires=[
"concurrentbuffer>=0.0.7",
"creationism>=0.0.5",
"numpy>=1.20.2",
"opencv-python-headless>=4.4.0",
"scipy>=1.5.2",
"scikit-image>=0.17.2",
"shapely>=1.7.1",
"openslide-python>=1.1.1",
"PyYAML>=5.4.1",
"jsonschema>=4.4.0",
"rtree==1.0.0",
],
long_description="Package for working with whole slide images.",
)