forked from cookiecutter/cookiecutter-django
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.txt
More file actions
55 lines (54 loc) · 2.72 KB
/
Copy pathbase.txt
File metadata and controls
55 lines (54 loc) · 2.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
python-slugify==8.0.4 # https://github.com/un33k/python-slugify
Pillow==12.1.1 # pyup: != 11.2.0 # https://github.com/python-pillow/Pillow
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
{%- if cookiecutter.windows == 'y' and cookiecutter.use_docker == 'n' %}
rcssmin==1.2.2 --install-option="--without-c-extensions" # https://github.com/ndparker/rcssmin
{%- else %}
rcssmin==1.2.2 # https://github.com/ndparker/rcssmin
{%- endif %}
{%- endif %}
argon2-cffi==25.1.0 # https://github.com/hynek/argon2_cffi
{%- if cookiecutter.use_whitenoise == 'y' %}
whitenoise==6.12.0 # https://github.com/evansd/whitenoise
{%- endif %}
redis==7.2.1 # https://github.com/redis/redis-py
{%- if cookiecutter.use_docker == "y" or cookiecutter.windows == "n" %}
hiredis==3.3.0 # https://github.com/redis/hiredis-py
{%- endif %}
{%- if cookiecutter.use_celery == "y" %}
celery==5.6.2 # pyup: < 6.0 # https://github.com/celery/celery
django-celery-beat==2.9.0 # https://github.com/celery/django-celery-beat
{%- if cookiecutter.use_docker == 'y' %}
flower==2.0.1 # https://github.com/mher/flower
{%- endif %}
{%- endif %}
{%- if cookiecutter.use_async == 'y' %}
uvicorn[standard]==0.41.0 # https://github.com/Kludex/uvicorn
uvicorn-worker==0.4.0 # https://github.com/Kludex/uvicorn-worker
{%- endif %}
# Django
# ------------------------------------------------------------------------------
django==5.2.11 # pyup: < 6.0 # https://www.djangoproject.com/
django-environ==0.13.0 # https://github.com/joke2k/django-environ
django-model-utils==5.0.0 # https://github.com/jazzband/django-model-utils
django-allauth[mfa]==65.14.3 # https://github.com/pennersr/django-allauth
django-crispy-forms==2.6 # https://github.com/django-crispy-forms/django-crispy-forms
crispy-bootstrap5==2025.6 # https://github.com/django-crispy-forms/crispy-bootstrap5
{%- if cookiecutter.frontend_pipeline == 'Django Compressor' %}
django-compressor==4.6.0 # https://github.com/django-compressor/django-compressor
{%- endif %}
django-redis==6.0.0 # https://github.com/jazzband/django-redis
{%- if cookiecutter.rest_api == 'DRF' %}
# Django REST Framework
djangorestframework==3.16.1 # https://github.com/encode/django-rest-framework
django-cors-headers==4.9.0 # https://github.com/adamchainz/django-cors-headers
# DRF-spectacular for api documentation
drf-spectacular==0.29.0 # https://github.com/tfranzel/drf-spectacular
{%- elif cookiecutter.rest_api == 'Django Ninja' %}
# Django Ninja
django-ninja==1.4.3 # https://github.com/vitalik/django-ninja
django-cors-headers==4.9.0 # https://github.com/adamchainz/django-cors-headers
{%- endif %}
{%- if cookiecutter.frontend_pipeline == 'Webpack' %}
django-webpack-loader==3.2.3 # https://github.com/django-webpack/django-webpack-loader
{%- endif %}