-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
39dd7a7
commit b2d396e
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ | |
from pykrakenapi.pykrakenapi import KrakenAPI | ||
|
||
__all__ = ['KrakenAPI'] | ||
__version__ = '0.1.8' | ||
__version__ = '0.1.9' | ||
__author__ = "Dominik Traxl <[email protected]>" | ||
__copyright__ = "Copyright 2017 Dominik Traxl" | ||
__license__ = "GNU GPL" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,12 +19,12 @@ | |
|
||
setup( | ||
name="pykrakenapi", | ||
version='0.1.8', | ||
version='0.1.9', | ||
packages=find_packages(), | ||
author="Dominik Traxl", | ||
author_email="[email protected]", | ||
url='https://github.com/dominiktraxl/pykrakenapi/', | ||
download_url='https://github.com/dominiktraxl/pykrakenapi/tarball/v0.1.8', | ||
download_url='https://github.com/dominiktraxl/pykrakenapi/tarball/v0.1.9', | ||
description=("A Python implementation of the Kraken API."), | ||
long_description=open('README.rst').read(), | ||
python_requires='>=3', | ||
|