forked from chrisacheson/liquidbot
-
Notifications
You must be signed in to change notification settings - Fork 757
/
setup.py
28 lines (23 loc) · 802 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
#!/usr/bin/env python
from setuptools import setup
from os.path import dirname, join
import market_maker
here = dirname(__file__)
setup(name='bitmex-market-maker',
version=market_maker.__version__,
description='Market making bot for BitMEX API',
url='https://github.com/BitMEX/sample-market-maker',
long_description=open(join(here, 'README.md')).read(),
long_description_content_type='text/markdown',
author='Samuel Reed',
author_email='[email protected]',
install_requires=[
'requests',
'websocket-client',
'future'
],
packages=['market_maker', 'market_maker.auth', 'market_maker.utils', 'market_maker.ws'],
entry_points={
'console_scripts': ['marketmaker = market_maker:run']
}
)