After converting to Python 3.x using 2to3 (see my previous question), I get this error during the build:
File "setup.py", line 28, in <module>
from . import mof_compiler
ValueError: Attempted relative import in non-package
The code:
from . import mof_compiler
mof_compiler._build()
But I don’t know why this is wrong, since mof_compiler is in the same dir as setup.py. Please help!