-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (28 loc) · 989 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
import os
from setuptools import setup
from setuptools import find_packages
setup(
name='PRONTO',
version='2.0.1',
author='Travis R. Goodwin',
author_email='[email protected]',
description='TensorFlow implementation of a Pneumonia Risk predictiON neTwOrk (PRONTO)',
license='MIT',
keywords='tensorflow deep-learning machine-learning predictive-model risk-prediction medical-informatics',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
install_requires=open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).read(),
extras_require={
'tqdm': ['tqdm'],
'tabulate': ['tabulate'],
'tf': ['tensorflow>=1.9.0'],
'tf_gpu': ['tensorflow-gpu>=1.9.0']
},
packages=find_packages(),
# entry_points={
# 'console_scripts': [
# 'run',
# 'baselines = src.scripts.baselines',
# 'svm = src.scripts.svm',
# ]
# }
)