I have some Django project sturcture:
PROJECT
--APPS
----Profile
----...
--PLUGINS
----ENDLESS_PAGINATION
----DJANGO_SUBDOMAINS
----...
And for example: in ENDLESS_PAGINATION models.py file is import:
from endless_pagination import ...
which can't be done.
ImportError: No module named endless_pagination
It only works when I have this structure:
PROJECT
--DJANGO_SUBDOMAINS
--ENDLESS_PAGINATION
--APPS
----Profile
----...
But I prefer the first and don't like change my plugins imports. Please help!