2022-11-01 05:23:53 +03:00
|
|
|
pytz==2022.6 # https://github.com/stub42/pytz
|
2022-11-18 23:21:59 +03:00
|
|
|
python-slugify==7.0.0 # https://github.com/un33k/python-slugify
|
2022-10-29 20:17:18 +03:00
|
|
|
Pillow==9.3.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' %}
|
2021-12-14 12:20:31 +03:00
|
|
|
rcssmin==1.1.0 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
|
2020-07-04 18:09:57 +03:00
|
|
|
{%- else %}
|
2021-12-14 12:20:31 +03:00
|
|
|
rcssmin==1.1.0 # https://github.com/ndparker/rcssmin
|
2020-07-04 18:09:57 +03:00
|
|
|
{%- endif %}
|
2015-04-29 06:09:43 +03:00
|
|
|
{%- endif %}
|
2021-12-13 23:47:14 +03:00
|
|
|
argon2-cffi==21.3.0 # https://github.com/hynek/argon2_cffi
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- if cookiecutter.use_whitenoise == 'y' %}
|
2022-06-06 02:09:46 +03:00
|
|
|
whitenoise==6.2.0 # https://github.com/evansd/whitenoise
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- endif %}
|
2022-11-22 11:58:49 +03:00
|
|
|
redis==4.3.5 # https://github.com/redis/redis-py
|
2020-05-01 17:35:20 +03:00
|
|
|
{%- 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
|
2020-04-29 23:42:24 +03:00
|
|
|
{%- endif %}
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- 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
|
2022-10-19 21:48:22 +03:00
|
|
|
django-celery-beat==2.4.0 # https://github.com/celery/django-celery-beat
|
2018-06-27 19:33:21 +03:00
|
|
|
{%- if cookiecutter.use_docker == 'y' %}
|
2022-08-25 00:40:09 +03:00
|
|
|
flower==1.2.0 # 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' %}
|
2022-11-20 17:12:28 +03:00
|
|
|
uvicorn[standard]==0.20.0 # https://github.com/encode/uvicorn
|
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
|
|
|
|
# ------------------------------------------------------------------------------
|
2022-10-19 22:01:43 +03:00
|
|
|
django==4.0.8 # pyup: < 4.1 # https://www.djangoproject.com/
|
2022-06-15 21:14:32 +03:00
|
|
|
django-environ==0.9.0 # https://github.com/joke2k/django-environ
|
2021-10-13 23:19:14 +03:00
|
|
|
django-model-utils==4.2.0 # https://github.com/jazzband/django-model-utils
|
2022-06-07 23:17:02 +03:00
|
|
|
django-allauth==0.51.0 # https://github.com/pennersr/django-allauth
|
2022-01-27 02:05:18 +03:00
|
|
|
django-crispy-forms==1.14.0 # https://github.com/django-crispy-forms/django-crispy-forms
|
2022-09-28 22:55:37 +03:00
|
|
|
crispy-bootstrap5==0.7 # https://github.com/django-crispy-forms/crispy-bootstrap5
|
2022-03-20 18:00:40 +03:00
|
|
|
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
|
2022-08-05 01:01:29 +03:00
|
|
|
django-compressor==4.1 # https://github.com/django-compressor/django-compressor
|
2018-03-09 12:57:32 +03:00
|
|
|
{%- endif %}
|
2021-12-22 21:19:45 +03:00
|
|
|
django-redis==5.2.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
|
2022-09-26 18:03:39 +03:00
|
|
|
djangorestframework==3.14.0 # https://github.com/encode/django-rest-framework
|
2022-06-06 02:09:22 +03:00
|
|
|
django-cors-headers==3.13.0 # https://github.com/adamchainz/django-cors-headers
|
2022-01-19 21:14:36 +03:00
|
|
|
# DRF-spectacular for api documentation
|
2022-09-26 18:58:07 +03:00
|
|
|
drf-spectacular==0.24.2 # https://github.com/tfranzel/drf-spectacular
|
2020-03-03 16:45:20 +03:00
|
|
|
{%- endif %}
|