这是我的setup.py
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
wrapper = Extension(
name="libwrapper",
...
)
setup(
name="libwrapper",
ext_modules=cythonize([wrapper])
)
当我运行python3 setup.py build_ext
输出文件时调用libwrapper.cpython-36m-x86_64-linux-gnu.so
,但我只想命名它libwrapper.so
,我该怎么做?