Skip to content

Commit 0cc75dd

Browse files
committed
PyPI release 0.2.0 stable
1 parent 366452e commit 0cc75dd

3 files changed

Lines changed: 12 additions & 9 deletions

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
example.py
44
build/
55
dist/
6-
*.egg-info/
6+
*.egg-info/
7+
*.rst

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ wsClient.close()
235235
```
236236

237237
## Change Log
238-
*0.2.0*
238+
*0.2.0* **Current PyPI release**
239239
- Renamed project to GDAX-Python
240240
- Merged Websocket updates to handle errors and reconnect
241241
- Branch created for test development
@@ -245,7 +245,7 @@ wsClient.close()
245245
- Added support for payment methods, reports, and coinbase user accounts
246246
- Other compatibility updates
247247

248-
*0.1.1b2* **Current PyPI release**
248+
*0.1.1b2*
249249
- Original PyPI Release
250250

251251
### Recommended Additions

setup.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,21 @@
99

1010
setup(
1111
name = 'GDAX',
12-
version = '0.1.1b2',
12+
version = '0.2.0',
1313
author = 'Daniel Paquin',
1414
author_email = 'dpaq34@gmail.com',
1515
license='MIT',
16-
url = 'https://github.com/danpaquin/coinbase-gdax-python',
16+
url = 'https://github.com/danpaquin/GDAX-Python',
1717
packages = find_packages(),
1818
install_requires = install_requires,
19-
description = 'A Python client for the GDAX API',
20-
download_url = 'https://github.com/danpaquin/coinbase-gdax-python/archive/master.zip',
21-
keywords = ['coinbase', 'gdax', 'bitcoin', 'ethereum', 'client', 'api', 'exchange', 'crypto', 'currency'],
19+
description = 'The Python client for the GDAX API',
20+
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'],
2222
classifiers=[
23-
'Development Status :: 4 - Beta',
23+
'Development Status :: 5 - Production/Stable',
2424
'Intended Audience :: Developers',
25+
'Intended Audience :: Financial and Insurance Industry',
26+
'Intended Audience :: Information Technology',
2527
'Topic :: Software Development :: Libraries :: Python Modules',
2628
'License :: OSI Approved :: MIT License',
2729
'Programming Language :: Python :: 2',

0 commit comments

Comments
 (0)