forked from jesse-ai/jesse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (53 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
VERSION = '0.6.2'
DESCRIPTION = "A trading framework for cryptocurrencies"
REQUIRED_PACKAGES = [
'psycopg2-binary',
'pytest',
'Click',
'arrow',
'requests',
'peewee',
'pydash',
'numpy',
'pandas',
'tabulate',
'timeloop',
'websocket-client',
'TA-Lib',
'matplotlib',
'empyrical',
'blinker',
'tulipy'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='jesse',
version=VERSION,
author="Saleh Mirnezami",
author_email="mirnezami.saleh@gmail.com",
packages=find_packages(),
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://jesse-ai.com",
project_urls={
'Documentation': 'https://docs.jesse-ai.com',
'Say Thanks!': 'http://forum.jesse-ai.com/',
'Source': 'http://github.com/jesse-ai/jesse',
'Tracker': 'https://github.com/jesse-ai/jesse/issues',
},
install_requires=REQUIRED_PACKAGES,
entry_points='''
[console_scripts]
jesse=jesse.__init__:cli
''',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
include_package_data=True,
)