setup.py: add django to setup_requires, as it is needed for compiling locales

This commit is contained in:
Benjamin Dauvergne 2013-06-06 09:49:34 +02:00
parent d08e6547af
commit b6623859ca
1 changed files with 3 additions and 0 deletions

View File

@ -88,4 +88,7 @@ setup(name='django-journal',
'django >= 1.4.2',
'django-model-utils<1.4',
],
setup_requires=[
'django >= 1.4.2',
],
)