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

68 lines
1.4 KiB
Plaintext
Raw Normal View History

{% 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
2016-02-07 08:26:40 +03:00
wheel==0.29.0
{%- endif %}
2013-08-16 15:35:18 +04:00
# Bleeding edge Django
2016-08-17 00:15:04 +03:00
django==1.9.9
2013-08-16 15:35:18 +04:00
2013-09-15 17:02:13 +04:00
# Configuration
django-environ==0.4.0
{% if cookiecutter.use_whitenoise == 'y' -%}
2016-08-11 13:05:06 +03:00
whitenoise==3.2.1
{%- endif %}
2013-09-15 17:02:13 +04:00
# Forms
2016-06-06 02:30:19 +03:00
django-braces==1.9.0
django-crispy-forms==1.6.0
django-floppyforms==1.7.0
2014-08-17 18:23:19 +04:00
2013-09-15 17:02:13 +04:00
# Models
django-model-utils==2.5.2
2013-09-15 17:02:13 +04:00
2014-12-31 20:27:37 +03:00
# Images
2016-08-18 16:04:58 +03:00
Pillow==3.3.1
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.27.0
2013-08-15 21:47:35 +04:00
{% 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
2016-07-07 05:38:03 +03:00
psycopg2==2.6.2
{%- endif %}
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.9.3
2013-08-15 21:47:35 +04:00
# Time zones support
2016-07-14 11:23:51 +03:00
pytz==2016.6.1
2013-08-15 21:47:35 +04:00
2015-07-06 13:43:26 +03:00
# Redis support
django-redis==4.4.4
2015-07-06 13:43:26 +03:00
redis>=2.10.0
{% if cookiecutter.use_celery == "y" %}
2016-04-26 08:51:28 +03:00
celery==3.1.23
{% endif %}
{% if cookiecutter.use_compressor == "y" %}
rcssmin==1.0.6 {% if cookiecutter.windows %}--install-option="--without-c-extensions"{% endif %}
django-compressor==2.1
{% endif %}
{% if cookiecutter.js_task_runner == 'Webpack' -%}
# Webpack
django-webpack-loader==0.3.3
{%- endif %}
2013-08-27 11:08:52 +04:00
# Your custom requirements go here