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

49 lines
2.3 KiB
Plaintext
Raw Normal View History

2022-03-27 16:21:54 +03:00
pytz==2022.1 # https://github.com/stub42/pytz
2022-04-27 23:06:33 +03:00
python-slugify==6.1.2 # https://github.com/un33k/python-slugify
Pillow==9.1.1 # https://github.com/python-pillow/Pillow
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
rcssmin==1.1.0 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
{%- else %}
rcssmin==1.1.0 # https://github.com/ndparker/rcssmin
{%- endif %}
{%- endif %}
2021-12-13 23:47:14 +03:00
argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi
{%- if cookiecutter.use_whitenoise == 'y' %}
whitenoise==6.2.0 # https://github.com/evansd/whitenoise
{%- endif %}
redis==4.3.4 # https://github.com/redis/redis-py
{%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %}
2021-03-29 19:12:29 +03:00
hiredis==2.0.0 # https://github.com/redis/hiredis-py
{%- endif %}
{%- if cookiecutter.use_celery == "y" %}
2022-06-04 19:03:07 +03:00
celery==5.2.7 # pyup: < 6.0 # https://github.com/celery/celery
django-celery-beat==2.3.0 # https://github.com/celery/django-celery-beat
{%- if cookiecutter.use_docker == 'y' %}
2021-07-27 15:05:01 +03:00
flower==1.0.0 # https://github.com/mher/flower
{%- endif %}
{%- endif %}
{%- if cookiecutter.use_async == 'y' %}
uvicorn[standard]==0.18.2 # https://github.com/encode/uvicorn
{%- endif %}
2013-08-15 21:47:35 +04:00
# Django
# ------------------------------------------------------------------------------
2022-07-06 20:11:01 +03:00
django==3.2.14 # pyup: < 4.0 # https://www.djangoproject.com/
2022-06-15 21:14:32 +03:00
django-environ==0.9.0 # https://github.com/joke2k/django-environ
django-model-utils==4.2.0 # https://github.com/jazzband/django-model-utils
django-allauth==0.51.0 # https://github.com/pennersr/django-allauth
django-crispy-forms==1.14.0 # https://github.com/django-crispy-forms/django-crispy-forms
crispy-bootstrap5==0.6 # https://github.com/django-crispy-forms/crispy-bootstrap5
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
django-compressor==3.1 # https://github.com/django-compressor/django-compressor
{%- endif %}
2021-12-22 21:19:45 +03:00
django-redis==5.2.0 # https://github.com/jazzband/django-redis
{%- if cookiecutter.use_drf == 'y' %}
# Django REST Framework
djangorestframework==3.13.1 # https://github.com/encode/django-rest-framework
django-cors-headers==3.13.0 # https://github.com/adamchainz/django-cors-headers
# DRF-spectacular for api documentation
drf-spectacular==0.22.1 # https://github.com/tfranzel/drf-spectacular
{%- endif %}