-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 782 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 782 Bytes
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
from setuptools import setup
setup(
name='python-patho',
version='0.1.2',
description='Python library for pathology image analysis',
url='https://github.com/superizer/pypath',
author='Attasuntorn Traisuwan',
author_email='superizer.tone@gmail.com',
license='AGPL-3.0 License',
packages=['pypath'],
install_requires=['numpy',
'opencv-python',
'scikit-image',
'spams',
'tqdm',
'staintools',
],
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.6',
],
)