Prepare C-based Cython package to publish on pypi
问题 I'm going to create C library and I would like to create Python wrapper using Cython. Right now I have mylib.a file compiled and bundled (C files) and I want to wrap methods from my library in Cython. I successfully created .pyx and .pxd files and I can build it using python setup.py build_ext command. My problem appears when I try publish it on pypi. If I run my setup.py , create wheel and publish it I can download it from pypi - but I can't run import mylib . I read a lot online tutorials