cookiecutter-django/{{cookiecutter.project_slug}}/requirements/base.txt
2016-12-06 20:43:54 -08:00

61 lines
1.3 KiB
Plaintext

{% if cookiecutter.use_python3 == 'y' -%}
# Wheel 0.25+ needed to install certain packages on CPython 3.5+
# like Pillow and psycopg2
# See http://bitly.com/wheel-building-fails-CPython-35
# Verified bug on Python 3.5.1
wheel==0.29.0
{%- endif %}
# Bleeding edge Django
django==1.10.4
# Configuration
django-environ==0.4.1
{% if cookiecutter.use_whitenoise == 'y' -%}
whitenoise==3.2.2
{%- endif %}
# Forms
django-braces==1.10.0
django-crispy-forms==1.6.1
# Models
django-model-utils==2.6
# Images
Pillow==3.4.2
# For user registration, either via email or social
# Well-built with regular release cycles!
django-allauth==0.29.0
{% 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.2
{%- endif %}
# Unicode slugification
awesome-slugify==1.6.5
# Time zones support
pytz==2016.7
# Redis support
django-redis==4.6.0
redis>=2.10.5
{% if cookiecutter.use_celery == "y" %}
celery==3.1.24
{% endif %}
{% if cookiecutter.use_compressor == "y" %}
rcssmin==1.0.6 {% if cookiecutter.windows == 'y' %}--install-option="--without-c-extensions"{% endif %}
django-compressor==2.1
{% endif %}
# Your custom requirements go here