[691826]: / setup.py

Download this file

30 lines (28 with data), 751 Bytes

 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
from setuptools import setup, find_packages
import sys
if sys.version_info < (2,7):
sys.exit('Sorry, Python < 2.7 is not supported')
setup(
name='wsitools',
version='0.1dev',
description='Whole slide image processing tools',
packages=find_packages(),
author="Jun Jiang",
author_email="Jiang.Jun@mayo.edu",
url='https://github.com/smujiang/smujiang.github.io',
license='Creative Commons Attribution-Noncommercial-Share Alike license',
install_requires=[
'numpy',
'matplotlib',
'opencv-python',
'xlrd',
'scikit-image',
'scikit-learn',
'scipy',
'openslide-python',
'shapely',
'pillow',
'joblib',
'tensorflow'
]
)