Код: Выделить всё
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])
)
Подробнее здесь: https://stackoverflow.com/questions/602 ... -extension
Мобильная версия