From ca467e08e694368aa01019acf3e6a32bc45ec92c Mon Sep 17 00:00:00 2001 From: Sylvain Bellemare Date: Wed, 8 Jun 2016 12:40:41 +0200 Subject: [PATCH] 0.1.3 (#63) * Mirco version increment to 0.1.3 * Get the long_description from the README --- setup.py | 6 +++++- transactions/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ed70dc4..47dee72 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,10 @@ def find_version(*file_paths): raise RuntimeError('Unable to find version string.') +with open('README.rst') as readme: + long_description = readme.read() + + install_requires = [ 'bitcoin>=1.1.42', 'pycoin>=0.62', @@ -71,7 +75,7 @@ def find_version(*file_paths): packages=['transactions', 'transactions.services'], description='transactions: Bitcoin for Humans', - long_description=__doc__, + long_description=long_description, classifiers=[ 'Development Status :: 3 - Alpha', 'Intended Audience :: Developers', diff --git a/transactions/__init__.py b/transactions/__init__.py index c5f3887..b60390f 100644 --- a/transactions/__init__.py +++ b/transactions/__init__.py @@ -1,4 +1,4 @@ from transactions import Transactions # noqa -__version__ = '0.1.2' +__version__ = '0.1.3'