summaryrefslogtreecommitdiff
path: root/src/cython/setup.py
blob: 26a4659055179b672b1eb103bad234529b999c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from distutils.core import setup, Extension
from Cython.Build import cythonize

gudhi = Extension(
    "gudhi",
    sources = ['gudhi.pyx',],
    language = 'c++',
    extra_compile_args=['-std=c++11'],
    include_dirs = ['..'],
)

setup(
    name = 'gudhi',
    ext_modules = cythonize(gudhi),
)