Python-StreamedRequests/setup.py

17 lines
621 B
Python
Raw Normal View History

from setuptools import setup, find_packages
2019-07-04 08:26:32 +00:00
setup(name='streamedrequests',
version='1.0.2',
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=find_packages(exclude=['contrib', 'docs', 'tests']),
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
)