2020-04-28 14:00:34 +03:00
|
|
|
pytz==2020.1 # https://github.com/stub42/pytz
|
2020-07-04 18:15:10 +03:00
|
|
|
python-slugify==4.0.1 # https://github.com/un33k/python-slugify
|
2020-10-15 01:58:12 +03:00
|
|
|
Pillow==8.0.0 # https://github.com/python-pillow/Pillow
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_compressor == "y" %}
|
2020-07-04 18:09:57 +03:00
|
|
|
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
|
|
|
|
rcssmin==1.0.6 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
|
|
|
|
{%- else %}
|
|
|
|
rcssmin==1.0.6 # https://github.com/ndparker/rcssmin
|
|
|
|
{%- endif %}
|
2015-04-29 06:09:43 +03:00
|
|
|
{%- endif %}
|
2020-06-21 16:26:40 +03:00
|
|
|
argon2-cffi==20.1.0 # https://github.com/hynek/argon2_cffi
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_whitenoise == 'y' %}
|
2020-08-04 14:15:53 +03:00
|
|
|
whitenoise==5.2.0 # https://github.com/evansd/whitenoise
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- endif %}
|
2020-07-04 18:15:10 +03:00
|
|
|
redis==3.5.3 # https://github.com/andymccurdy/redis-py
|
2020-05-01 17:35:20 +03:00
|
|
|
{%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %}
|
2020-07-24 19:58:28 +03:00
|
|
|
hiredis==1.1.0 # https://github.com/redis/hiredis-py
|
2020-04-29 23:42:24 +03:00
|
|
|
{%- endif %}
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_celery == "y" %}
|
2020-08-17 16:20:00 +03:00
|
|
|
celery==4.4.6 # pyup: < 5.0,!=4.4.7 # https://github.com/celery/celery
|
2020-02-29 14:00:30 +03:00
|
|
|
django-celery-beat==2.0.0 # https://github.com/celery/django-celery-beat
|
2018-06-27 19:33:21 +03:00
|
|
|
{%- if cookiecutter.use_docker == 'y' %}
|
2020-07-04 18:15:10 +03:00
|
|
|
flower==0.9.5 # https://github.com/mher/flower
|
2018-06-27 19:33:21 +03:00
|
|
|
{%- endif %}
|
2015-10-20 02:02:42 +03:00
|
|
|
{%- endif %}
|
2020-03-25 04:53:53 +03:00
|
|
|
{%- if cookiecutter.use_async == 'y' %}
|
2020-09-30 16:31:39 +03:00
|
|
|
uvicorn==0.12.1 # https://github.com/encode/uvicorn
|
2020-10-07 19:33:00 +03:00
|
|
|
wsproto==0.15.0 # https://github.com/python-hyper/wsproto/
|
2020-03-24 22:40:14 +03:00
|
|
|
{%- endif %}
|
2013-08-15 21:47:35 +04:00
|
|
|
|
2018-03-09 12:57:32 +03:00
|
|
|
# Django
|
|
|
|
# ------------------------------------------------------------------------------
|
2020-09-01 17:56:59 +03:00
|
|
|
django==3.0.10 # pyup: < 3.1 # https://www.djangoproject.com/
|
2018-06-26 10:53:36 +03:00
|
|
|
django-environ==0.4.5 # https://github.com/joke2k/django-environ
|
2019-12-12 14:00:35 +03:00
|
|
|
django-model-utils==4.0.0 # https://github.com/jazzband/django-model-utils
|
2020-10-15 22:30:53 +03:00
|
|
|
django-allauth==0.43.0 # https://github.com/pennersr/django-allauth
|
2020-07-24 19:58:32 +03:00
|
|
|
django-crispy-forms==1.9.2 # https://github.com/django-crispy-forms/django-crispy-forms
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_compressor == "y" %}
|
2019-12-31 14:00:30 +03:00
|
|
|
django-compressor==2.4 # https://github.com/django-compressor/django-compressor
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- endif %}
|
2020-06-21 16:26:40 +03:00
|
|
|
django-redis==4.12.1 # https://github.com/jazzband/django-redis
|
2020-03-03 16:45:20 +03:00
|
|
|
{%- if cookiecutter.use_drf == "y" %}
|
2018-03-17 14:58:16 +03:00
|
|
|
# Django REST Framework
|
2020-09-28 22:11:17 +03:00
|
|
|
djangorestframework==3.12.1 # https://github.com/encode/django-rest-framework
|
2020-08-25 15:08:22 +03:00
|
|
|
django-cors-headers==3.5.0 # https://github.com/adamchainz/django-cors-headers
|
2020-03-03 16:45:20 +03:00
|
|
|
{%- endif %}
|