"numpy.pxd" comes as-is with the Cython distribution. >From the Cython documentation:
Cython generates .c files from .pyx source files. The .c files are then compiled (with a C compiler) to .so for linux and .pyd for Windows.extensions which can be import'ed into Python (http://docs.cython.org/src/quickstart/build.html). A .pxd file are like C-header files that contain Cython declarations, which can be imoprted into a .pyx module using cimport. -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
