From c63387ca3657848c0eaa8014a863148c1e6525ff Mon Sep 17 00:00:00 2001 From: malosek Date: Wed, 16 Sep 2009 17:00:32 +0200 Subject: python directory moved into bindings dir --- bindings/python/setup.py.in | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bindings/python/setup.py.in (limited to 'bindings/python/setup.py.in') diff --git a/bindings/python/setup.py.in b/bindings/python/setup.py.in new file mode 100644 index 0000000..f7055d5 --- /dev/null +++ b/bindings/python/setup.py.in @@ -0,0 +1,14 @@ +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]) + + -- cgit v1.2.3