-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (28 loc) · 951 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
with open('README.md') as f:
readme = f.read()
setup(
name='wsisampler',
version='0.0.2',
description='A package for WSI sampling.',
long_description=readme,
author='Peter Byfield',
author_email='[email protected]',
url='https://github.com/Peter554/WholeSlideImageSampler',
packages=find_packages(),
install_requires=['numpy',
'opencv-python',
'openslide-python',
'matplotlib',
'jupyter',
'future',
'cython',
'pandas',
'scikit-image'
],
classifiers=[
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.5'
]
)