-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·34 lines (32 loc) · 1019 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
31
32
33
34
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name = 'WSI_handling',
packages = ['WSI_handling'],
version = '0.16.1',
license='MIT',
description = 'Convienent handling of annotated whole slide images',
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Patrick Leo',
author_email = '[email protected]',
url = 'https://github.com/pjl54/WSI_handling',
keywords = ['whole slide image', 'digital pathology', 'annotations'],
install_requires=[
'numpy',
'matplotlib',
'Pillow',
'opencv-python',
'shapely',
'openslide-python'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
],
)