forked from danpaquin/coinbasepro-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (56 loc) · 1.75 KB
/
setup.py
File metadata and controls
63 lines (56 loc) · 1.75 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '2.2.0'
url = 'https://github.com/teleprint-me/coinbasepro-python'
tag = f'/archive/refs/tags/{version}.zip'
download_url = url + tag
install_requires = [
'requests',
'websocket-client',
'pymongo',
'sortedcontainers',
'iso8601'
]
tests_require = [
'pytest',
'python-dateutil',
]
keywords = [
'cbpro', 'gdax', 'gdax-api', 'orderbook', 'trade',
'bitcoin', 'ethereum', 'BTC', 'ETH', 'client', 'api', 'wrapper',
'exchange', 'crypto', 'currency', 'trading', 'trading-api',
'coinbase', 'pro', 'prime', 'coinbasepro'
]
with open("README.md", "r") as file:
long_description = file.read()
setup(
name='cbpro',
version=version,
author='Daniel Paquin',
author_email='dpaq34@gmail.com',
license='MIT',
url=url,
packages=find_packages(),
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'test': tests_require,
},
description='The unofficial Python client for the Coinbase Pro API',
long_description=long_description,
long_description_content_type="text/markdown",
download_url=download_url,
keywords=keywords,
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.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)