forked from COINsciencer/dydxpython-DEMO
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.25 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
from setuptools import setup, find_packages
LONG_DESCRIPTION = open('README.md', 'r').read()
REQUIREMENTS = open('requirements.txt', 'r').read().split('\n')
setup(
name='dydx-python',
version='0.11.3',
packages=find_packages(),
package_data={
'dydx': ['abi/*.json'],
},
description='dYdX Python REST API for Limit Orders',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/dydxprotocol/dydx-python',
author='dYdX Trading Inc.',
license='Apache 2.0',
author_email='[email protected]',
install_requires=REQUIREMENTS,
keywords='dydx exchange rest api defi ethereum eth',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)