summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: fcb282386a3d6e43bf4ce0321b9ac3ed1e4fca6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from distutils.core import setup, Extension

m2crypto_ext_module = Extension(
    '_M2Crypto_ext',
    sources=['M2Crypto_ext.i'],
    swig_opts=['-I/usr/include'],
    libraries=['ssl']
)

setup(
    name = 'M2Crypto_ext',
    version = '0.1.0',
    author = "Alexander Sulfrian",
    description = """Simple swig example from docs""",
    ext_modules = [m2crypto_ext_module],
    py_modules = ["M2Crypto_ext"],
)