-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
34 lines (26 loc) · 949 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
30
31
32
33
34
"""Example market maker strategy for Deribit futures."""
from setuptools import setup
with open('README.md', 'rt') as f:
long_description = f.read()
setup(
name='deribit_example_marketmaker',
version='1.0.0',
description='An example market maker for Deribit',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/deribit/examples',
author="Uriel Scott",
author_email="[email protected]",
maintainer='Deribit',
maintainer_email='[email protected]',
classifiers=[
'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords='deribit marketmaker bot',
py_modules=["market_maker"],
install_requires=['deribit_api'],
)