Python-StreamedRequests/setup.py

17 lines
579 B
Python
Raw Normal View History

2019-07-04 08:26:32 +00:00
from distutils.core import setup
setup(name='streamedrequests',
version='1.0.0',
2019-07-04 08:26:32 +00:00
description='Library for streaming http get or post request\'s responses',
author='Kevin Froman',
author_email='beardog@mailbox.org',
url='https://github.com/beardog108/streamedrequests',
packages=['streamedrequests'],
2019-07-08 08:01:12 +00:00
install_requires=['requests'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
2019-07-04 08:26:32 +00:00
)