File size: 420 Bytes
fc8c192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import Extension, setup

import numpy
from Cython.Build import cythonize

setup(
    ext_modules=cythonize(
        Extension(
            "pse",
            sources=["pse.pyx"],
            language="c++",
            include_dirs=[numpy.get_include()],
            library_dirs=[],
            libraries=[],
            extra_compile_args=["-O3"],
            extra_link_args=[],
        )
    )
)