2024-02-09 13:46:52 +03:00
|
|
|
python-slugify==8.0.4 # https://github.com/un33k/python-slugify
|
2024-07-02 17:32:48 +03:00
|
|
|
Pillow==10.4.0 # https://github.com/python-pillow/Pillow
|
2022-03-20 18:00:40 +03:00
|
|
|
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
|
2020-07-04 18:09:57 +03:00
|
|
|
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
|
2024-06-17 11:17:45 +03:00
|
|
|
rcssmin==1.1.2 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
|
2020-07-04 18:09:57 +03:00
|
|
|
{%- else %}
|
2024-06-17 11:17:45 +03:00
|
|
|
rcssmin==1.1.2 # https://github.com/ndparker/rcssmin
|
2020-07-04 18:09:57 +03:00
|
|
|
{%- endif %}
|
2015-04-29 06:09:43 +03:00
|
|
|
{%- endif %}
|
2023-08-17 11:06:43 +03:00
|
|
|
argon2-cffi==23.1.0 # https://github.com/hynek/argon2_cffi
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_whitenoise == 'y' %}
|
2024-06-20 00:42:34 +03:00
|
|
|
whitenoise==6.7.0 # https://github.com/evansd/whitenoise
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- endif %}
|
2024-06-26 17:22:47 +03:00
|
|
|
redis==5.0.7 # https://github.com/redis/redis-py
|
2020-05-01 17:35:20 +03:00
|
|
|
{%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %}
|
2023-12-19 13:42:27 +03:00
|
|
|
hiredis==2.3.2 # 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" %}
|
2024-04-18 10:56:10 +03:00
|
|
|
celery==5.4.0 # pyup: < 6.0 # https://github.com/celery/celery
|
2024-03-03 21:56:41 +03:00
|
|
|
django-celery-beat==2.6.0 # https://github.com/celery/django-celery-beat
|
2018-06-27 19:33:21 +03:00
|
|
|
{%- if cookiecutter.use_docker == 'y' %}
|
2023-08-14 12:52:57 +03:00
|
|
|
flower==2.0.1 # 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' %}
|
2024-06-02 22:00:08 +03:00
|
|
|
uvicorn[standard]==0.30.1 # https://github.com/encode/uvicorn
|
2024-06-08 16:56:02 +03:00
|
|
|
uvicorn-worker==0.2.0 # https://github.com/Kludex/uvicorn-worker
|
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
|
|
|
|
# ------------------------------------------------------------------------------
|
2024-07-09 20:30:39 +03:00
|
|
|
django==4.2.14 # pyup: < 5.0 # https://www.djangoproject.com/
|
2023-09-02 08:00:55 +03:00
|
|
|
django-environ==0.11.2 # https://github.com/joke2k/django-environ
|
2024-05-07 02:32:56 +03:00
|
|
|
django-model-utils==4.5.1 # https://github.com/jazzband/django-model-utils
|
2024-07-13 00:48:17 +03:00
|
|
|
django-allauth[mfa]==0.63.6 # https://github.com/pennersr/django-allauth
|
2024-06-16 01:57:21 +03:00
|
|
|
django-crispy-forms==2.2 # https://github.com/django-crispy-forms/django-crispy-forms
|
2024-02-25 12:38:31 +03:00
|
|
|
crispy-bootstrap5==2024.2 # https://github.com/django-crispy-forms/crispy-bootstrap5
|
2022-03-20 18:00:40 +03:00
|
|
|
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
|
2024-06-17 11:17:45 +03:00
|
|
|
django-compressor==4.5 # https://github.com/django-compressor/django-compressor
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- endif %}
|
2023-10-04 11:29:25 +03:00
|
|
|
django-redis==5.4.0 # https://github.com/jazzband/django-redis
|
2022-03-20 18:00:40 +03:00
|
|
|
{%- if cookiecutter.use_drf == 'y' %}
|
2018-03-17 14:58:16 +03:00
|
|
|
# Django REST Framework
|
2024-06-20 00:53:00 +03:00
|
|
|
djangorestframework==3.15.2 # https://github.com/encode/django-rest-framework
|
2024-06-20 00:43:31 +03:00
|
|
|
django-cors-headers==4.4.0 # https://github.com/adamchainz/django-cors-headers
|
2022-01-19 21:14:36 +03:00
|
|
|
# DRF-spectacular for api documentation
|
2024-04-01 22:40:12 +03:00
|
|
|
drf-spectacular==0.27.2 # https://github.com/tfranzel/drf-spectacular
|
2023-01-29 15:12:12 +03:00
|
|
|
{%- endif %}
|
|
|
|
{%- if cookiecutter.frontend_pipeline == 'Webpack' %}
|
2024-04-04 16:41:29 +03:00
|
|
|
django-webpack-loader==3.1.0 # https://github.com/django-webpack/django-webpack-loader
|
2020-03-03 16:45:20 +03:00
|
|
|
{%- endif %}
|