forked from naripok/cryptotrader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (36 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·38 lines (36 loc) · 1.22 KB
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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
config = {
'description': "Cryptotrader cryptotrader for automated cryptocurrency trading",
'author': "Fernando H'.' Canteruccio, José Olimpio de Almeida",
'url': "www.github.com/naripok",
'download_url': "www.github.com/naripok",
'author_email': "fernando.canteruccio@gmail.com, jose.mendes13@hotmail.com",
'version': "1.0a1",
'install_requires': [
'pytest',
'hypothesis',
'hypothesis-numpy',
'numpy',
'scipy',
'pandas',
# 'pymongo',
'matplotlib',
'bokeh',
'chainer',
'cvxopt',
'chainerrl',
# 'tensorflow',
# 'keras',
# 'keras-rl',
'optunity',
'ta-lib',
'empyrical',
],
'packages': find_packages(),
'scripts': [],
'name': "cryptotrader"
}
setup(**config)