diff options
Diffstat (limited to 'python/setup.py.in')
-rw-r--r-- | python/setup.py.in | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/python/setup.py.in b/python/setup.py.in deleted file mode 100644 index f7055d5..0000000 --- a/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]) - - |