cookiecutter-django/{{cookiecutter.repo_name}}/requirements/base.txt
2016-01-09 20:10:11 +03:00

51 lines
926 B
Plaintext

# Bleeding edge Django
django==1.9.1
# Configuration
django-environ==0.4.0
django-secure==1.0.1
{% if cookiecutter.use_whitenoise == 'y' -%}
whitenoise==2.0.6
{%- endif %}
# Forms
django-braces==1.8.1
django-crispy-forms==1.6.0
django-floppyforms==1.6.0
# Models
django-model-utils==2.4
# Images
Pillow==3.1.0
# For user registration, either via email or social
# Well-built with regular release cycles!
django-allauth==0.24.1
{% if cookiecutter.windows == 'y' -%}
# On Windows, you must download/install psycopg2 manually
# from http://www.lfd.uci.edu/~gohlke/pythonlibs/#psycopg
{% else %}
# Python-PostgreSQL Database Adapter
psycopg2==2.6.1
{%- endif %}
# Unicode slugification
unicode-slugify==0.1.3
django-autoslug==1.9.3
# Time zones support
pytz==2015.7
# Redis support
django-redis==4.3.0
redis>=2.10.0
{% if cookiecutter.use_celery == "y" %}
celery==3.1.19
{% endif %}
# Your custom requirements go here