From 77bc3790fa9e781ad26ec881175d22d807e16acf Mon Sep 17 00:00:00 2001 From: tamara Date: Mon, 24 Aug 2009 11:17:16 +0200 Subject: python extension added --- python/setup.py.in | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 python/setup.py.in (limited to 'python/setup.py.in') diff --git a/python/setup.py.in b/python/setup.py.in new file mode 100644 index 0000000..f7055d5 --- /dev/null +++ b/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