Here's my 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])
)
When I run python3 setup.py build_ext
the output file is called libwrapper.cpython-36m-x86_64-linux-gnu.so
, but I want to name it only libwrapper.so
, how can I do that?