2016-01-13 21:41:02 +03:00
|
|
|
# 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
|
2017-04-21 22:31:45 +03:00
|
|
|
|
2016-01-13 21:41:02 +03:00
|
|
|
|
2013-08-16 15:35:18 +04:00
|
|
|
# Bleeding edge Django
|
2017-04-05 11:36:50 +03:00
|
|
|
django==1.10.7 # pyup: >=1.10,<1.11
|
2013-08-16 15:35:18 +04:00
|
|
|
|
2013-09-15 17:02:13 +04:00
|
|
|
# Configuration
|
2017-04-21 00:44:39 +03:00
|
|
|
django-environ==0.4.3
|
2015-04-29 06:09:43 +03:00
|
|
|
{% if cookiecutter.use_whitenoise == 'y' -%}
|
2017-02-02 16:46:25 +03:00
|
|
|
whitenoise==3.3.0
|
2015-04-29 06:09:43 +03:00
|
|
|
{%- endif %}
|
|
|
|
|
2013-09-15 17:02:13 +04:00
|
|
|
|
|
|
|
# Forms
|
2017-02-02 16:47:02 +03:00
|
|
|
django-braces==1.11.0
|
2016-10-17 13:20:09 +03:00
|
|
|
django-crispy-forms==1.6.1
|
2014-08-17 18:23:19 +04:00
|
|
|
|
2013-09-15 17:02:13 +04:00
|
|
|
# Models
|
2017-04-18 10:20:56 +03:00
|
|
|
django-model-utils==3.0.0
|
2013-09-15 17:02:13 +04:00
|
|
|
|
2014-12-31 20:27:37 +03:00
|
|
|
# Images
|
2017-04-21 00:44:39 +03:00
|
|
|
Pillow==4.1.0
|
2013-08-16 15:35:18 +04:00
|
|
|
|
2017-03-17 05:19:42 +03:00
|
|
|
# Password storage
|
|
|
|
argon2-cffi==16.3.0
|
|
|
|
|
2013-08-16 15:35:18 +04:00
|
|
|
# For user registration, either via email or social
|
|
|
|
# Well-built with regular release cycles!
|
2017-03-03 09:11:54 +03:00
|
|
|
django-allauth==0.31.0
|
2013-08-15 21:47:35 +04:00
|
|
|
|
2015-10-20 02:02:42 +03: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
|
2017-03-24 13:25:36 +03:00
|
|
|
psycopg2==2.7.1
|
2015-10-20 02:02:42 +03:00
|
|
|
{%- endif %}
|
2013-08-15 21:47:35 +04:00
|
|
|
|
2013-08-16 15:35:18 +04:00
|
|
|
# Unicode slugification
|
2016-09-04 20:52:52 +03:00
|
|
|
awesome-slugify==1.6.5
|
2013-08-15 21:47:35 +04:00
|
|
|
|
2014-10-03 18:08:38 +04:00
|
|
|
# Time zones support
|
2017-04-01 19:12:29 +03:00
|
|
|
pytz==2017.2
|
2013-08-15 21:47:35 +04:00
|
|
|
|
2015-07-06 13:43:26 +03:00
|
|
|
# Redis support
|
2017-01-04 15:53:57 +03:00
|
|
|
django-redis==4.7.0
|
2016-09-29 05:58:39 +03:00
|
|
|
redis>=2.10.5
|
2015-07-06 13:43:26 +03:00
|
|
|
|
2014-10-12 12:32:17 +04:00
|
|
|
{% if cookiecutter.use_celery == "y" %}
|
2017-04-24 15:26:08 +03:00
|
|
|
celery==3.1.24
|
2014-10-12 12:32:17 +04:00
|
|
|
{% endif %}
|
|
|
|
|
2016-06-18 05:07:45 +03:00
|
|
|
{% if cookiecutter.use_compressor == "y" %}
|
2016-08-23 09:24:43 +03:00
|
|
|
rcssmin==1.0.6 {% if cookiecutter.windows == 'y' %}--install-option="--without-c-extensions"{% endif %}
|
2017-02-02 16:47:27 +03:00
|
|
|
django-compressor==2.1.1
|
2016-06-18 05:07:45 +03:00
|
|
|
{% endif %}
|
|
|
|
|
2013-08-27 11:08:52 +04:00
|
|
|
# Your custom requirements go here
|