Is it possible to create a Python 2.7 package using __init__.pyx (compiled to __init__.so)? If so how? I haven\'t had any luck getting it to work
__init__.pyx
__init__.so
Try using a relative import.
in __init__:
__init__
from . import bar
Might also be from . import foo. Haven't used python 2 cython in a while.
from . import foo