mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-09 11:17:34 +01:00
15 lines
360 B
Python
15 lines
360 B
Python
|
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])
|
||
|
|
||
|
|