Skip to content

Commit

Permalink
0.1.3 (#63)
Browse files Browse the repository at this point in the history
* Mirco version increment to 0.1.3

* Get the long_description from the README
  • Loading branch information
sbellem committed Jun 8, 2016
1 parent 90321bb commit ca467e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion transactions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from transactions import Transactions # noqa


__version__ = '0.1.2'
__version__ = '0.1.3'

0 comments on commit ca467e0

Please sign in to comment.