forked from ornlpmcp/ASCENDS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 846 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
from setuptools import setup
setup(
name='ascends-toolkit',
version='0.4.0',
description='ASCENDS: Advanced data SCiENce toolkit for Non-Data Scientists',
long_description='',
url='https://github.com/liza183/ascends-toolkit',
author='Matt Sangkeun Lee, Dongwon Shin, Jian Peng',
author_email='[email protected]',
license='MIT License',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
],
packages=[],
py_modules=['ascends'],
python_requires='>=3.2',
install_requires=[
'matplotlib',
'numpy',
'pandas',
'tensorflow',
'keras',
'tornado',
'scikit-learn',
'minepy',
'np_utils',
],
scripts=['train.py','predict.py'],
)