settings structure

This commit is contained in:
Arne Schauf 2013-09-28 15:06:34 +02:00
parent 3740a520a6
commit dd713011a5
2 changed files with 10 additions and 1 deletions

View File

@ -158,3 +158,8 @@ LOGGING = {
} }
ACCOUNT_ACTIVATION_DAYS = 7 ACCOUNT_ACTIVATION_DAYS = 7
try:
from .local_settings import *
except ImportError:
pass

View File

@ -17,8 +17,12 @@ setup(
zip_safe=False, zip_safe=False,
platforms='any', platforms='any',
install_requires=[ install_requires=[
'django', 'django<1.6',
'dnspython', 'dnspython',
'south',
'django-bootstrap-form',
'django-registration',
'django-debug-toolbar', #for dev
], ],
classifiers=[ classifiers=[
'Development Status :: 2 - Pre-Alpha', 'Development Status :: 2 - Pre-Alpha',