forked from kuegi/kuegiBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 808 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import dirname, join
import kuegi_bot
here = dirname(__file__)
setup(name='kuegi-bot',
version=kuegi_bot.__version__,
description='Cryptobot for executing multiple strategies',
url='https://github.com/kuegi/kuegiBot',
long_description=open(join(here, 'README.md')).read(),
long_description_content_type='text/markdown',
author='Kuegi',
author_email='mythosMatheWG@gmail.com',
install_requires=[
'requests',
'websocket-client',
'future',
'plotly',
'bybit'
],
packages=find_packages(),
scripts=["backtest.py","history_crawler.py","cryptobot.py"],
classifiers=["Development Status :: 3 - Alpha" ]
)