cookiecutter-django/{{cookiecutter.repo_name}}/requirements/base.txt

38 lines
621 B
Plaintext
Raw Normal View History

2013-08-16 15:35:18 +04:00
# Bleeding edge Django
django==1.8.2
2013-08-16 15:35:18 +04:00
2013-09-15 17:02:13 +04:00
# Configuration
django-environ==0.3.0
2014-12-18 18:19:56 +03:00
django-secure==1.0.1
{% if cookiecutter.use_whitenoise == 'y' -%}
whitenoise==1.0.6
{%- endif %}
2013-09-15 17:02:13 +04:00
# Forms
django-braces==1.8.0
2013-09-15 17:02:13 +04:00
django-crispy-forms==1.4.0
django-floppyforms==1.4.1
2014-08-17 18:23:19 +04:00
2013-09-15 17:02:13 +04:00
# Models
2014-08-17 18:22:19 +04:00
django-model-utils==2.2
2013-09-15 17:02:13 +04:00
2014-12-31 20:27:37 +03:00
# Images
2015-06-08 14:06:39 +03:00
Pillow==2.8.2
2013-08-16 15:35:18 +04:00
# For user registration, either via email or social
# Well-built with regular release cycles!
django-allauth==0.20.0
2013-08-15 21:47:35 +04:00
2014-12-31 20:27:37 +03:00
# For the persistence stores
2015-06-15 15:35:05 +03:00
psycopg2==2.6.1
2013-08-15 21:47:35 +04:00
2013-08-16 15:35:18 +04:00
# Unicode slugification
2015-01-28 21:39:21 +03:00
unicode-slugify==0.1.3
django-autoslug==1.8.0
2013-08-15 21:47:35 +04:00
# Time zones support
pytz==2015.4
2013-08-15 21:47:35 +04:00
2013-08-27 11:08:52 +04:00
# Your custom requirements go here