diff options
| author | tamara <tamara@jozsi.(none)> | 2009-08-24 11:17:16 +0200 | 
|---|---|---|
| committer | tamara <tamara@jozsi.(none)> | 2009-08-24 11:17:16 +0200 | 
| commit | 77bc3790fa9e781ad26ec881175d22d807e16acf (patch) | |
| tree | e6c3ba8cea92ecb021c523e125b5c658ed876263 /python/setup.py.in | |
| parent | 6be4b0143793ab5ceebc5d9d6bbe5c2f1333a0d2 (diff) | |
python extension added
Diffstat (limited to 'python/setup.py.in')
| -rw-r--r-- | python/setup.py.in | 14 | 
1 files changed, 14 insertions, 0 deletions
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]) + +  | 
