forked from yiwensong/coinbasepro-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (68 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/env python
"""setup.py
setup.py for cbpro2 python package.
"""
from setuptools import find_packages
from setuptools import setup
INSTALL_REQUIRES = [
'pymongo>=3.5.1',
'python-dateutil',
'requests>=2.13.0',
'six>=1.10.0',
'sortedcontainers>=1.5.9',
'websocket-client>=0.40.0',
]
TESTS_REQUIRE = [
'pytest',
'coverage',
]
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name='cbpro2',
version='1.0.4',
author='Daniel Paquin',
author_email='[email protected]',
license='MIT',
url='https://github.com/yiwensong/coinbasepro-python',
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
tests_require=TESTS_REQUIRE,
description='The unofficial Python client for the Coinbase Pro API',
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords=[
'gdax',
'gdax-api',
'orderbook',
'trade',
'bitcoin',
'ethereum',
'BTC',
'ETH',
'client',
'api',
'wrapper',
'exchange',
'crypto',
'currency',
'trading',
'trading-api',
'coinbase',
'pro',
'prime',
'coinbasepro',
],
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 :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)