Patch from Chuck Thier to properly install subpackages (eventlet.hubs and eventlet.support) now that we have subpackages

This commit is contained in:
donovan
2008-04-28 18:28:30 -07:00
parent c93af05c72
commit c61ce07bbf

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python #!/usr/bin/env python
from setuptools import setup from setuptools import setup, find_packages
setup( setup(
name='eventlet', name='eventlet',
@@ -9,7 +9,7 @@ setup(
author='Linden Lab', author='Linden Lab',
author_email='eventletdev@lists.secondlife.com', author_email='eventletdev@lists.secondlife.com',
url='http://wiki.secondlife.com/wiki/Eventlet', url='http://wiki.secondlife.com/wiki/Eventlet',
packages=['eventlet'], packages=find_packages(),
install_requires=['greenlet'], install_requires=['greenlet'],
long_description=""" long_description="""
Eventlet is a networking library written in Python. It achieves Eventlet is a networking library written in Python. It achieves