Patch from Chuck Thier to properly install subpackages (eventlet.hubs and eventlet.support) now that we have subpackages
This commit is contained in:
4
setup.py
4
setup.py
@@ -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
|
||||||
|
Reference in New Issue
Block a user