-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
45 lines (44 loc) · 946 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
35
36
37
38
39
40
41
42
43
44
45
from distutils.core import setup
setup(
name="agatha",
version="1.0.2-dev",
packages=['.', 'agatha'],
license='Apache',
description='Stock price prediction with keras ',
author="Tony Riemer",
author_email="[email protected]",
install_requires=[
'absl-py>=0.6.1'
'astor>=0.7.1',
'certifi>=2018.8.24',
'chardet>=3.0.4',
'cycler>=0.10.0',
'gast>=0.2.0',
'grpcio>=1.17.1',
'h5py>=2.9.0',
'idna>=2.8',
'Keras>=2.2.4',
'Keras-Applications>=1.0.6',
'Keras-Preprocessing>=1.0.5',
'kiwisolver>=1.0.1',
'Markdown>=3.0.1',
'matplotlib>=3.0.2',
'numpy>=1.15.4',
'pandas>=0.23.4',
'protobuf>=3.6.1',
'pyparsing>=2.3.0',
'python-dateutil>=2.7.5',
'pytz>=2018.7',
'PyYAML>=3.13',
'requests>=2.21.0',
'scikit-learn>=0.20.2',
'scipy>=1.2.0',
'six>=1.12.0',
'tensorboard>=1.12.1',
'tensorflow>=1.12.0',
'termcolor>=1.1.0',
'urllib3>=1.24.1',
'Werkzeug>=0.14.1',
'wincertstore>=0.2'
]
)