summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorrdw <rdw@reimplemented.local>2008-03-16 21:45:23 -0500
committerrdw <rdw@reimplemented.local>2008-03-16 21:45:23 -0500
commitaec9f79fc2bae16e0ba27e848343ae19824061a8 (patch)
treec284c47132f1199b91ca17e7d2d14c1b5c0f5a54 /setup.py
downloadeventlet-aec9f79fc2bae16e0ba27e848343ae19824061a8.tar.gz
Initial implementation of libeventhub. Works for some basic socket stuff but it's got problems.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..dd5999c
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+
+from setuptools import setup
+
+setup(
+ name='eventlet',
+ version='0.2',
+ description='Coroutine-based networking library',
+ author='Linden Lab',
+ author_email='eventletdev@lists.secondlife.com',
+ url='http://wiki.secondlife.com/wiki/Eventlet',
+ packages=['eventlet'],
+ install_requires=['greenlet'],
+ long_description="""
+ Eventlet is a networking library written in Python. It achieves
+ high scalability by using non-blocking io while at the same time
+ retaining high programmer usability by using coroutines to make
+ the non-blocking io operations appear blocking at the source code
+ level.""",
+ classifiers=[
+ "License :: OSI Approved :: MIT License",
+ "Programming Language :: Python",
+ "Topic :: Internet",
+ "Topic :: Software Development :: Libraries :: Python Modules",
+ "Intended Audience :: Developers",
+ "Development Status :: 4 - Beta"]
+ )
+