When you install a new django application, you have to add/modify your settings.py module.
For a project I\'m trying to make that module a python subpackage and crea
just put
from base import *
from admin import *
...
in ur init.py that should work
i used it for different sites
base/settings.py # common settings: db, apps, ...
base/sites/website1/settings.py # site_id, custom middleware
base/sites/website2/settings.py # site_id, custom middleware
the website settings import the common settings with
from base.settings import *
and define custom attribtues