[go: up one dir, main page]

Menu

[b0c624]: / src / python / setup.py.i  Maximize  Restore  History

Download this file

25 lines (20 with data), 666 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
"""
setup.py file for SWIG generated module
"""
from distutils.core import setup, Extension
flom_module = Extension('_@_FLOM_PREFIX@',
include_dirs=['..'],
sources=['flom_wrap.c'],
library_dirs=['../.libs'],
runtime_library_dirs=['@libdir@'],
libraries=['@_FLOM_PREFIX@','@GTHREAD2_PYTHON@','@GLIB2_PYTHON@','@DBUS1_PYTHON@','@OPENSSL_PYTHON@','@CRYPTO_PYTHON@']
)
setup (name = '@_FLOM_PREFIX@',
version = '@PACKAGE_VERSION@',
author = 'Christian Ferrari',
author_email = '@PACKAGE_BUGREPORT@',
description = """@PACKAGE_NAME@ python module""",
ext_modules = [@_FLOM_PREFIX@_module],
py_modules = ['@_FLOM_PREFIX@'],
)