Skip to content

Commit 8af8a7f

Browse files
author
Atif Nazir
committed
add package description
1 parent 68f07f0 commit 8af8a7f

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ For more information, see [Python API Docs](https://block.io/api/simple/python).
3434

3535
## Windows Users, Please Note:
3636

37-
You can install it like so on Windows: "pip install block-io==1.1.11"
37+
You can install it like so on Windows: "pip install block-io==1.1.13"
3838

3939
Now regarding the vcvarsall.bat error -- that error is due to the fact that pycrypto library is being compiled when you're trying to install the block-io library.
4040

@@ -51,7 +51,7 @@ Once this is done, go to C:\Python3.4\Lib\distutils, and create a file calls "di
5151
compiler=mingw32
5252

5353

54-
Now exit your Command Prompt or Python IDE, go to Command Prompt again, type "pip install block-io==1.1.10".
54+
Now exit your Command Prompt or Python IDE, go to Command Prompt again, type "pip install block-io==1.1.13".
5555

5656

5757
## Contributing

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1+
[metadata]
2+
description-file=README.md
13
[bdist_wheel]
24
universal=1

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
from setuptools import setup
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(name='block-io',
4-
version='1.1.11',
7+
version='1.1.13',
58
description='The easiest way to integrate Bitcoin, Dogecoin and Litecoin in your applications. Sign up at Block.io for your API key.',
69
url='https://github.com/BlockIo/block_io-python',
710
author='Atif Nazir',
811
author_email='a@block.io',
912
license='MIT',
1013
packages=['block_io'],
1114
python_requires='>=2.7, <4',
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
1217
install_requires=[
1318
'requests>=2.20.0',
1419
'pycryptodome>=3.6.6,<4.0',

0 commit comments

Comments
 (0)