-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (38 loc) · 1.01 KB
/
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
from setuptools import setup, find_packages
import cryptle
setup(
name='cryptle',
version=cryptle.get_version(),
author='Glasphere',
author_email='',
description='Cryptle: Algorithmic trading framework',
packages=find_packages(exclude=['test']),
package_data={'cryptle.backtest': ['*.csv']},
zip_safe=False,
python_requires='>=3.6',
install_requires=[
'numpy>=1.13',
'pandas>=0.21.0',
'scipy>=1.1.0',
'matplotlib>=2.2.0',
'requests>=2.18.4',
'websocket-client>=0.45',
'scikit-learn>=0.19.1',
'Click>=7.0',
],
extras_require={
'dev': [
'black',
'pylint>=2',
'pytest>=3',
'pre-commit',
'Sphinx>=1.7.2',
'sphinx-autodoc-typehints>=1.5.1',
'sphinx-rtd-theme>=0.4.0',
'watchdog>=0.9.0',
]
},
entry_points={
'console_scripts': ['cryptle = cryptle.test.integration.test_strategy:parse']
},
)