"src/git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "2fb4d3356cbf3173b5d9b6d50f080538063d7967"
Commit 017ff26f authored by WenmuZhou's avatar WenmuZhou
Browse files

add psenet

parent e132f670
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=[]
)))
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment