added long desc to setup.py
This commit is contained in:
parent
80ef09fa1a
commit
9cda9145ed
8
setup.py
8
setup.py
@ -1,8 +1,14 @@
|
||||
from setuptools import setup, find_packages
|
||||
from os import path
|
||||
this_directory = path.abspath(path.dirname(__file__))
|
||||
with open(path.join(this_directory, 'Readme.md'), encoding='utf-8') as f:
|
||||
long_description = f.read()
|
||||
|
||||
setup(name='streamedrequests',
|
||||
version='1.0.2',
|
||||
version='1.0.3',
|
||||
description='Library for streaming http get or post request\'s responses',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
author='Kevin Froman',
|
||||
author_email='beardog@mailbox.org',
|
||||
url='https://github.com/beardog108/StreamedRequests',
|
||||
|
Loading…
Reference in New Issue
Block a user