"test/git@developer.sourcefind.cn:zhaoyu6/sglang.git" did not exist on "877e35d7754cd1fa60b3f1226929dbc84146ea70"
setup.py 326 Bytes
Newer Older
WenmuZhou's avatar
WenmuZhou committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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=[]
)))