summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authordonovan <donovan@bigass.local>2008-05-20 15:54:07 -0700
committerdonovan <donovan@bigass.local>2008-05-20 15:54:07 -0700
commitec139e201d70a470ae62611839f4d1bf538fbacc (patch)
treeebf904490dc9b6f9a94280a07cc391e5ad72cd61 /setup.py
parent726879d73e05dcdcdd25bcaaf95b4bcf65801c6c (diff)
downloadeventlet-ec139e201d70a470ae62611839f4d1bf538fbacc.tar.gz
Put the pid at the beginning of this logline.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index bfa3c06..70e16d2 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,8 @@
#!/usr/bin/env python
-from setuptools import setup, find_packages
+
+from setuptools import Extension, find_packages, setup
+
setup(
name='eventlet',
@@ -26,3 +28,9 @@ setup(
"Development Status :: 4 - Beta"]
)
+
+
+setup(name="sendmsg",
+ version="1.0",
+ ext_modules=[Extension("sendmsg", ["src/sendmsg.c"])])
+