-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.py
31 lines (29 loc) · 922 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
31
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.8",
"dicfg==0.0.13",
"sourcelib>=0.0.4",
"numpy>=1.20.2",
"opencv-python-headless>=4.4.0",
"scipy>=1.5.2",
"scikit-image>=0.17.2",
"shapely>=1.7.1",
"PyYAML>=5.4.1",
"rtree>=1.0.0",
"lxml>=4.6.3",
"matplotlib>=3.6.2",
],
long_description="Package for working with whole slide images.",
)