
make it safe for PUT to return no body in httpc change over httpc.make_suite from using closures to using an instance of HttpSuite add HEAD support to httpc add HEAD support to jsonhttp add a setup.py All this development was support for my development of mulib.pantheon, checkin coming next.
14 lines
310 B
Python
14 lines
310 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='eventlet',
|
|
version='0.1',
|
|
description='Coroutine-based networking library',
|
|
author='Linden Lab',
|
|
author_email='sldev@lists.secondlife.com',
|
|
url='http://wiki.secondlife.com/wiki/Eventlet',
|
|
packages=['eventlet'])
|
|
|