setup.py: add install dependency upon django-model-utils

This commit is contained in:
Benjamin Dauvergne 2013-06-04 17:20:35 +02:00
parent 0a363e4cc4
commit 639cafaed4
3 changed files with 6 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<table>
<thead>
<tr>
<td>{% trans "Catégorie" %}</td>
<td>{% trans "Category" %}</td>
{% for choice_key, choice_name in form.choices %}
<td>{{ choice_name }}</td>
{% endfor %}

View File

@ -8,7 +8,7 @@
<table>
<thead>
<tr>
<td>{% trans "Catégorie" %}</td>
<td>{% trans "Category" %}</td>
{% for choice_key, choice_name in form.choices %}
<td>{{ choice_name }}</td>
{% endfor %}

View File

@ -87,7 +87,10 @@ setup(name="portail_citoyen_announces",
maintainer_email="info@entrouvert.com",
include_package_data=True,
packages=find_packages(),
install_requires=[],
install_requires=[
'django>=1.5.1',
'django-model-utils>=1.3,<1.4',
],
dependency_links=[],
cmdclass={'build': build, 'install_lib': install_lib,
'compile_translations': compile_translations,