11 lines
344 B
Python
11 lines
344 B
Python
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='streamedrequests',
|
||
|
version='0.0.0',
|
||
|
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'],
|
||
|
)
|