When using python setup.py build
with this code:
import setuptools
from distutils.core import setup
from Cython.Build import cythonize
setup(ext_modules=cythonize("module1.pyx", build_dir="temp"))
the .pyd library is produced in .\build\lib.win-amd64-2.7\module1.pyd
.
How to make the output .pyd file to the current folder .
instead?
Note: the cythonize
parameter build_dir="temp"
works: the module1.c
file produced by cython is in temp\
indeed. My question is about the output .pyd file.