2020-04-06 08:21:04 +00:00
|
|
|
from setuptools import setup, find_packages
|
2020-04-06 08:24:44 +00:00
|
|
|
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()
|
2019-07-04 08:26:32 +00:00
|
|
|
|
|
|
|
setup(name='streamedrequests',
|
2020-04-06 08:24:44 +00:00
|
|
|
version='1.0.3',
|
2019-07-04 08:26:32 +00:00
|
|
|
description='Library for streaming http get or post request\'s responses',
|
2020-04-06 08:24:44 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2019-07-04 08:26:32 +00:00
|
|
|
author='Kevin Froman',
|
|
|
|
author_email='beardog@mailbox.org',
|
2020-04-06 08:21:04 +00:00
|
|
|
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
|
|
|
)
|