From e756f088f9b48e68603c9d81161fdcca6b489c86 Mon Sep 17 00:00:00 2001 From: Sam McHardy Date: Thu, 17 Aug 2017 14:14:04 +0930 Subject: [PATCH] Update version number Add wheel distribution --- PYPIREADME.rst | 6 ++++++ README.rst | 13 +++++++++++++ setup.cfg | 2 ++ setup.py | 2 +- 4 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 setup.cfg diff --git a/PYPIREADME.rst b/PYPIREADME.rst index 23ed36a7..ada49f6d 100644 --- a/PYPIREADME.rst +++ b/PYPIREADME.rst @@ -7,6 +7,12 @@ Binance API .. image:: https://img.shields.io/pypi/l/python-binance.svg :target: https://pypi.python.org/pypi/python-binance +.. image:: https://img.shields.io/pypi/wheel/python-binance.svg + :target: https://pypi.python.org/pypi/python-binance + +.. image:: https://img.shields.io/pypi/pyversions/python-binance.svg + :target: https://pypi.python.org/pypi/python-binance + This is an unofficial Python wrapper for the `Binance exchange API v1 `_. I am in no way affiliated with Binance, use at your own risk. Features diff --git a/README.rst b/README.rst index 35a58813..3387be7e 100644 --- a/README.rst +++ b/README.rst @@ -7,6 +7,12 @@ Binance API .. image:: https://img.shields.io/pypi/l/python-binance.svg :target: https://pypi.python.org/pypi/python-binance +.. image:: https://img.shields.io/pypi/wheel/python-binance.svg + :target: https://pypi.python.org/pypi/python-binance + +.. image:: https://img.shields.io/pypi/pyversions/python-binance.svg + :target: https://pypi.python.org/pypi/python-binance + This is an unofficial Python wrapper for the `Binance exchange API v1 `_. I am in no way affiliated with Binance, use at your own risk. Features @@ -281,6 +287,13 @@ If this library helped you out feel free to donate. Changelog --------- +v0.1.1 - 2017-08-17 +^^^^^^^^^^^^^^^^^^^ + +** Added ** + +- Validation for HSR/BTC pair + v0.1.0 - 2017-08-16 ^^^^^^^^^^^^^^^^^^^ diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..2a9acf13 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1 diff --git a/setup.py b/setup.py index 51d6912d..0a776cee 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='python-binance', - version='0.1.0', + version='0.1.1', packages=['binance'], description='Binance API python implementation', url='https://github.com/sammchardy/python-binance',