Create package with cython so users can install it without having cython already installed
问题 I have a question. I would like to distribute my cython-powered packages, but I see no easy way to build them in setup.py. I would like setup.py to: most importantly: install my package without cython (from pre-generated C files or by installing cython beforehand) rebuild (run cythonize) package on sdist not need to hard-code list of my cython modules (just use glob or something) be able to work without .c files (should not be stored in git) or .pyx (might not be distributed). at least one of