My project combines pure Python code and Cython extensions to optimize and link to C libraries. I have one source tree for my Python project and one for Cython and C code. Each Cython extension has a setup.py file to create them. In fact, for each extension, I do the following:
python setup.py build_ext
Is there a way to tell distutils where to install my extension (if possible using a relative path) instead of using --inplace followed by mv ? Using the --prefix option is not very good, because it creates a hierarchy of folders that I don't need.
source share