You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
419 B
19 lines
419 B
1 month ago
|
from distutils.core import setup, Extension
|
||
|
from Cython.Build import cythonize
|
||
|
import numpy
|
||
|
|
||
|
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=[],
|
||
|
)
|
||
|
)
|
||
|
)
|