Sorry for that simple question, but I could not find an answer find an answer for few days:
I
made a package A that contains, among other things B.pyx and B.pxd. I
have a setup.py which compiles and installs everything in
/usr/lib64/python-2.7/site-packages/A (this directory now contains B.so and B.pxd).
Now
I have an cython code which is a part of an application, say C.pyx,
that requires B.pxd, but I can not get it to work properly, usually I
get ImportError in C not able to find B (C.pyx requires B.pxd but not
B.so).
My question is, what is the proper way (using setup.py) to
cimport B? My plan is to use version 0.16 as its template engine is
crucial for the project.
Thank you,
Nadav