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

47 lines
2.2 KiB
Plaintext
Raw Normal View History

2020-11-02 17:37:16 +03:00
pytz==2020.4 # 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-23 01:52:32 +03:00
Pillow==8.0.1 # https://github.com/python-pillow/Pillow
{%- if cookiecutter.use_compressor == "y" %}
{%- 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 %}
{%- endif %}
argon2-cffi==20.1.0 # https://github.com/hynek/argon2_cffi
{%- if cookiecutter.use_whitenoise == 'y' %}
2020-08-04 14:15:53 +03:00
whitenoise==5.2.0 # https://github.com/evansd/whitenoise
{%- endif %}
2020-07-04 18:15:10 +03:00
redis==3.5.3 # https://github.com/andymccurdy/redis-py
{%- 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
{%- endif %}
{%- if cookiecutter.use_celery == "y" %}
celery==4.4.6 # pyup: < 5.0,!=4.4.7 # https://github.com/celery/celery
django-celery-beat==2.1.0 # https://github.com/celery/django-celery-beat
{%- if cookiecutter.use_docker == 'y' %}
2020-07-04 18:15:10 +03:00
flower==0.9.5 # https://github.com/mher/flower
{%- endif %}
{%- endif %}
{%- if cookiecutter.use_async == 'y' %}
2020-10-19 19:13:14 +03:00
uvicorn==0.12.2 # https://github.com/encode/uvicorn
wsproto==0.15.0 # https://github.com/python-hyper/wsproto/
{%- endif %}
2013-08-15 21:47:35 +04:00
# Django
# ------------------------------------------------------------------------------
2020-11-02 17:37:19 +03:00
django==3.0.11 # pyup: < 3.1 # https://www.djangoproject.com/
django-environ==0.4.5 # https://github.com/joke2k/django-environ
django-model-utils==4.0.0 # https://github.com/jazzband/django-model-utils
django-allauth==0.43.0 # https://github.com/pennersr/django-allauth
django-crispy-forms==1.9.2 # https://github.com/django-crispy-forms/django-crispy-forms
{%- if cookiecutter.use_compressor == "y" %}
django-compressor==2.4 # https://github.com/django-compressor/django-compressor
{%- endif %}
django-redis==4.12.1 # https://github.com/jazzband/django-redis
{%- if cookiecutter.use_drf == "y" %}
# Django REST Framework
djangorestframework==3.12.2 # https://github.com/encode/django-rest-framework
django-cors-headers==3.5.0 # https://github.com/adamchainz/django-cors-headers
{%- endif %}