-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 1.09 KB
/
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
from setuptools import setup, find_packages
setup(
name='compay-syntax',
version='0.4.1',
description='Syntax - the arrangement of whole-slide-images and their image tiles to create well-formed computational pathology pipelines.',
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author='Jevgenij Gamper & Peter Byfield',
author_email='[email protected]',
url='https://github.com/jgamper/compay-syntax',
packages=find_packages(),
install_requires=['numpy',
'openslide-python',
'matplotlib',
'jupyter-client',
'jupyter-core',
'Pillow',
'typeguard',
'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.6'
]
)