Skip to content

Commit dac93da

Browse files
committed
Documentation Updates
1 parent 5dc3e8a commit dac93da

5 files changed

Lines changed: 19 additions & 17 deletions

File tree

GDAX/OrderBook.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
"""
2-
GDAX/WebsocketClient.py
3-
David Caseria
1+
#
2+
# GDAX/OrderBook.py
3+
# David Caseria
4+
#
5+
# Live order book updated from the GDAX Websocket Feed
46

5-
Live order book updated from the GDAX Websocket Feed
6-
"""
77
from operator import itemgetter
88
from bintrees import RBTree
99

GDAX/WebsocketClient.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
"""
2-
GDAX/WebsocketClient.py
3-
Daniel Paquin
4-
5-
Template object to receive messages from the GDAX Websocket Feed
6-
"""
1+
#
2+
# GDAX/WebsocketClient.py
3+
# Daniel Paquin
4+
#
5+
# Template object to receive messages from the GDAX Websocket Feed
76

87
from __future__ import print_function
98
import json

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 danpaquin
3+
Copyright (c) 2017 Daniel Paquin
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

contributors.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Daniel J Paquin
22
Leonard Lin
33
Jeff Gibson
4+
David Caseria

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,24 @@
33
from setuptools import setup, find_packages
44

55
install_requires = [
6-
'requests>=2.5',
7-
'websocket-client>=0.37.0',
6+
'bintrees==2.0.7',
7+
'requests==2.13.0',
8+
'six==1.10.0',
9+
'websocket-client==0.40.0',
810
]
911

1012
setup(
1113
name = 'GDAX',
12-
version = '0.2.0',
14+
version = '0.2.2',
1315
author = 'Daniel Paquin',
1416
author_email = 'dpaq34@gmail.com',
1517
license='MIT',
1618
url = 'https://github.com/danpaquin/GDAX-Python',
1719
packages = find_packages(),
1820
install_requires = install_requires,
19-
description = 'The Python client for the GDAX API',
21+
description = 'The unofficial Python client for the GDAX API',
2022
download_url = 'https://github.com/danpaquin/GDAX-Python/archive/master.zip',
21-
keywords = ['coinbase', 'gdax', 'bitcoin', 'BTC', 'ETH', 'ethereum', 'client', 'api', 'wrapper', 'exchange', 'crypto', 'currency'],
23+
keywords = ['gdax', 'gdax-api', 'orderbook', 'trade', 'bitcoin', 'ethereum', 'BTC', 'ETH', 'client', 'api', 'wrapper', 'exchange', 'crypto', 'currency', 'trading', 'trading-api', 'coinbase'],
2224
classifiers=[
2325
'Development Status :: 5 - Production/Stable',
2426
'Intended Audience :: Developers',

0 commit comments

Comments
 (0)