forked from danpaquin/coinbasepro-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (41 loc) · 1.54 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
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
'bintrees==2.0.7',
'requests==2.13.0',
'six==1.10.0',
'websocket-client==0.40.0',
'pymongo==3.5.1'
]
tests_require = [
'pytest',
]
setup(
name='gdax',
version='1.0.6',
author='Daniel Paquin',
author_email='[email protected]',
license='MIT',
url='https://github.com/danpaquin/gdax-python',
packages=find_packages(),
install_requires=install_requires,
tests_require=tests_require,
description='The unofficial Python client for the GDAX API',
download_url='https://github.com/danpaquin/gdax-Python/archive/master.zip',
keywords=['gdax', 'gdax-api', 'orderbook', 'trade', 'bitcoin', 'ethereum', 'BTC', 'ETH', 'client', 'api', 'wrapper', 'exchange', 'crypto', 'currency', 'trading', 'trading-api', 'coinbase'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)