|
a |
|
b/setup.py |
|
|
1 |
from distutils.core import setup |
|
|
2 |
#import distutils.command.bdist_conda |
|
|
3 |
|
|
|
4 |
setup( |
|
|
5 |
name='slideslicer', |
|
|
6 |
version='0.1', |
|
|
7 |
packages=['slideslicer',], |
|
|
8 |
license='BSDv2', |
|
|
9 |
author="Dmytro S Lituiev", |
|
|
10 |
author_email="d.lituiev@gmail.com", |
|
|
11 |
description="tools for reading Leica digital slides and annotations, and cutting them in smaller patches", |
|
|
12 |
long_description=open('README.md').read(), |
|
|
13 |
setup_requires = ['cython','matplotlib','numpy', |
|
|
14 |
], |
|
|
15 |
install_requires=['pandas', 'openslide_python', 'Pillow>=5.0.0', 'opencv-python', |
|
|
16 |
'scikit-image>=0.14.1', # used solely in hsv_histeq.py |
|
|
17 |
'pycocotools', |
|
|
18 |
'shapely', 'descartes', |
|
|
19 |
'lxml', |
|
|
20 |
], |
|
|
21 |
classifiers=[ |
|
|
22 |
"Programming Language :: Python :: 3", |
|
|
23 |
"License :: BSDv2", |
|
|
24 |
"Operating System :: OS Independent", |
|
|
25 |
], |
|
|
26 |
#distclass=distutils.command.bdist_conda.CondaDistribution, |
|
|
27 |
conda_buildnum=1, |
|
|
28 |
) |