I have Cython code that wraps C++ code, which needs compiled before running. To do this, I use the following line: python setup.py build_ext --inplace
However, a great thing about python is the setup.py file and the ability to install packages to pip. All previous version of my code were able to be installed to pip and then called without being moved to a local directory for whoever was using it. Just like numpy, scipy, etc.
Is there any way to pip install a package and have the Cython files compiled at the same time?