I'm developing/testing a package in my local directory. I want to import it in the interpreter (v2.5), but sys.path does not include the current directory. Right now I type in "sys.path.insert(0,'.')". Is there a better way?
Also, "from . import mypackage" fails with this error: "ValueError: Attempted relative import in non-package"