summaryrefslogtreecommitdiff
path: root/bindings/python/setup.py.in
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-02-27 12:23:22 +0100
committerMartin Sustrik <sustrik@250bpm.com>2010-02-27 12:23:22 +0100
commit45414b5444db0a1f7e325c7dce92fbe84667d093 (patch)
tree440e38ef6726daaf22c3093f6323faf86af3325f /bindings/python/setup.py.in
parentefefa069b2ce407a7da4328ab024c47920a76960 (diff)
python binding removed
Diffstat (limited to 'bindings/python/setup.py.in')
-rw-r--r--bindings/python/setup.py.in14
1 files changed, 0 insertions, 14 deletions
diff --git a/bindings/python/setup.py.in b/bindings/python/setup.py.in
deleted file mode 100644
index f7055d5..0000000
--- a/bindings/python/setup.py.in
+++ /dev/null
@@ -1,14 +0,0 @@
-from distutils.core import setup, Extension
-
-module1 = Extension('libpyzmq',
- libraries = ['zmq'],
- library_dirs = ['@prefix@/lib'],
- include_dirs = ['@PYTHON_SETUP_INCLUDES@','@prefix@/include'],
- sources = ['pyzmq.cpp'])
-
-setup (name = 'libyzmq',
- version = '@VERSION@',
- description = '0MQ Python library',
- ext_modules = [module1])
-
-