summaryrefslogtreecommitdiff
path: root/python/setup.py.in
blob: f7055d536ec479d9fcdd38b7c493e0d120a469ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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])