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
I've used this work-around:
settings.py:
INSTALLED_APPS = ('whatever',) import more_settings more_settings.modify(globals())
more_settings.py:
def modify(settings): settings['INSTALLED_APPS'] += ('another_app',)