Having the init script in the project package lead to tons of pain over
time, such as import errors from sub-packages, hard to track double
imports of packages with different namespace, and circular imports
trying to import a package with two different names. So, the script that
bootstraps MComix is not located outside of the mcomix package. This
should not impact users much - normally, they should use the wrapper
provided by setup.py.
If you are a package maintainer, and symlinked e.g. /usr/bin/mcomix to
mcomix/mcomixstarter.py in the past, please use the wrapper generated
by setup.py now instead. mcomix/run.py can NOT be started directly with
the Python interpreter (I removed +x from its attributes and added an
explicit call to sys.exit).