-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
20 lines (19 loc) · 890 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name='qtim_ROP',
packages=find_packages(),
version='0.2',
description = 'A package for segmentation and classification of retinal images',
entry_points = {
"console_scripts": ['deeprop = qtim_ROP.__main__:main']
},
author='James Brown',
author_email='[email protected]',
url='https://github.com/QTIM-Lab/qtim_ROP',
download_url = 'https://github.com/QTIM-Lab/qtim_ROP/tarball/0.2',
keywords=['retina', 'retinopathy of prematurity', 'plus disease', 'machine learning', 'deep learning', 'CNN'],
install_requires=['pandas==0.22.0', 'addict', 'opencv-python', 'SimpleITK', 'appdirs', 'seaborn', 'matplotlib', 'keras>=1.2.0',
'h5py', 'scikit-learn', 'scikit-image==0.13.0'],
package_data={'qtim_ROP': ['config/preprocessing.yaml']},
classifiers=[],
)