2013-08-16 15:35:18 +04:00
|
|
|
# Bleeding edge Django
|
2015-08-19 09:29:21 +03:00
|
|
|
django==1.8.4
|
2013-08-16 15:35:18 +04:00
|
|
|
|
2013-09-15 17:02:13 +04:00
|
|
|
# Configuration
|
2015-04-20 00:09:00 +03:00
|
|
|
django-environ==0.3.0
|
2014-12-18 18:19:56 +03:00
|
|
|
django-secure==1.0.1
|
2015-04-29 06:09:43 +03:00
|
|
|
{% if cookiecutter.use_whitenoise == 'y' -%}
|
2015-08-21 08:08:40 +03:00
|
|
|
whitenoise==2.0.3
|
2015-04-29 06:09:43 +03:00
|
|
|
{%- endif %}
|
|
|
|
|
2013-09-15 17:02:13 +04:00
|
|
|
|
|
|
|
# Forms
|
2015-07-22 19:03:15 +03:00
|
|
|
django-braces==1.8.1
|
2015-08-31 04:52:38 +03:00
|
|
|
django-crispy-forms==1.5.1
|
2015-07-30 14:45:11 +03:00
|
|
|
django-floppyforms==1.5.2
|
2014-08-17 18:23:19 +04:00
|
|
|
|
2013-09-15 17:02:13 +04:00
|
|
|
# Models
|
2015-07-22 19:03:15 +03:00
|
|
|
django-model-utils==2.3.1
|
2013-09-15 17:02:13 +04:00
|
|
|
|
2014-12-31 20:27:37 +03:00
|
|
|
# Images
|
2015-07-07 15:15:26 +03:00
|
|
|
Pillow==2.9.0
|
2013-08-16 15:35:18 +04:00
|
|
|
|
|
|
|
# For user registration, either via email or social
|
|
|
|
# Well-built with regular release cycles!
|
2015-08-04 08:11:53 +03:00
|
|
|
django-allauth==0.23.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
|
2015-05-19 18:39:21 +03:00
|
|
|
django-autoslug==1.8.0
|
2013-08-15 21:47:35 +04:00
|
|
|
|
2014-10-03 18:08:38 +04:00
|
|
|
# Time zones support
|
2015-05-13 20:16:45 +03:00
|
|
|
pytz==2015.4
|
2013-08-15 21:47:35 +04:00
|
|
|
|
2015-07-06 13:43:26 +03:00
|
|
|
# Redis support
|
|
|
|
django-redis==4.2.0
|
|
|
|
redis>=2.10.0
|
|
|
|
|
2014-10-12 12:32:17 +04:00
|
|
|
{% if cookiecutter.use_celery == "y" %}
|
|
|
|
celery==3.1.18
|
|
|
|
{% endif %}
|
|
|
|
|
2013-08-27 11:08:52 +04:00
|
|
|
# Your custom requirements go here
|