a b/setup.py
1
from setuptools import setup, find_packages
2
import sys
3
if sys.version_info < (2,7):
4
    sys.exit('Sorry, Python < 2.7 is not supported')
5
6
setup(
7
    name='wsitools',
8
    version='0.1dev',
9
    description='Whole slide image processing tools',
10
    packages=find_packages(),
11
    author="Jun Jiang",
12
    author_email="Jiang.Jun@mayo.edu",
13
    url='https://github.com/smujiang/smujiang.github.io',
14
    license='Creative Commons Attribution-Noncommercial-Share Alike license',
15
    install_requires=[
16
        'numpy',
17
        'matplotlib',
18
        'opencv-python',
19
        'xlrd',
20
        'scikit-image',
21
        'scikit-learn',
22
        'scipy',
23
        'openslide-python',
24
        'shapely',
25
        'pillow',
26
        'joblib',
27
        'tensorflow'
28
    ]
29
)