forked from Behappy123/market-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 704 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import dirname, join, isfile
from shutil import copyfile
here = dirname(__file__)
setup(name='bitmex-market-maker',
version='0.3',
description='Market making bot for BitMEX API',
long_description=open(join(here, 'README.md')).read(),
author='Samuel Reed',
author_email='sam@bitmex.com',
url='',
install_requires=[
'requests',
'websocket-client',
'future'
]
)
if not isfile('settings.py'):
copyfile(join('market_maker', '_settings_base.py'), 'settings.py')
print("\n**** \nImportant!!!\nEdit settings.py before starting the bot.\n****")