You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note also that if you use setuptools instead of distutils, the default action when running python setup.py install is to create a zipped egg file which will not work with cimport for pxd files when you try to use them from a dependent package. To prevent this, include zip_safe=False in the arguments to setup().
It would be nice if pyrobuf distributed
pyrobuf_{list,util}.pxd
files in sys.path. This is needed in order tocimport
pyrobuf_list
.It seems, as documented in Cython documentation, it can be done with
package_data
parameter insetup.py
file.As workaround, I have to keep the
pxd
files within repository of my own projects, which inconvenient to maintain.The text was updated successfully, but these errors were encountered: