When I use cython , I use this commandline to compile my pyx file:
python setup.py build_ext --inplace
With the --inplace
argument , my C file , builds folders and pyd compiled python module go where my pyx source file is.
There a way to compile all this files in a specific folder? I searched on google and cython website without findung anything.