mirror of
https://github.com/Hopiu/django-model-utils.git
synced 2026-03-18 20:50:22 +00:00
18 lines
268 B
Python
18 lines
268 B
Python
import os
|
|
|
|
BASE_DIR = os.path.dirname(__file__)
|
|
|
|
INSTALLED_APPS = (
|
|
'django.contrib.contenttypes',
|
|
'model_utils',
|
|
'model_utils.tests',
|
|
)
|
|
|
|
DATABASE_ENGINE = 'sqlite3'
|
|
|
|
try:
|
|
import south
|
|
INSTALLED_APPS += ('south',)
|
|
except ImportError:
|
|
pass
|
|
|