+from __future__ import unicode_literals
+
+from django import VERSION
+
# Django settings for xxx project.
DEBUG = True
'django.contrib.messages',
'django.contrib.staticfiles',
'cas_provider',
+ 'simple',
)
+if VERSION < (1, 7):
+ INSTALLED_APPS += ('south',)
+
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error.