forked from django-cms/django-cms-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.in
47 lines (36 loc) · 1.4 KB
/
requirements.in
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
# Compile this file for changes to take effect:
# pip-compile requirements.in >> requirements.txt
django>=3.1,<3.2 # 3.2 has dark admin theme which looks bad in custom django CMS admin views
dj-database-url==0.5.0
django-storage-url==0.5.0
whitenoise==5.2.0
boto3==1.14.49
psycopg2==2.8.5
uwsgi==2.0.19.1
# key requirements for django CMS
django-cms<4
django-classy-tags>=2.0
django-sekizai>=2.0
six
pytz
# optional, but used in most projects
djangocms-admin-style>=2.0,<3.0
# the default CKEditor - optional, but used in most projects
djangocms-text-ckeditor>=4.0,<5.0
# some content plugins - optional, but used in most projects
djangocms-link>=3.0,<4.0
djangocms-icon>=2.0,<3.0
djangocms-style>=3.0,<4.0
djangocms-googlemap>=2.0,<3.0
djangocms-video>=3.0,<4.0
djangocms-file>=3.0,<4.0
djangocms-picture>=3.0,<4.0
easy-thumbnails==2.8.0
# optional django CMS Bootstrap 4 modules
djangocms-bootstrap4>=2.0,<3.0
# optional django CMS Bootstrap 5 modules (alpha) - requires BS5 frontend setup in the templates
# as of Q4 2021 there are still basic issues with djangocms-bootstrap5
# https://github.com/gl-agnx/djangocms-bootstrap5/archive/refs/heads/master.zip#egg=djangocms_bootstrap5
# Django Filer - optional, but used in most projects (alpha)
https://github.com/django-cms/django-filer/archive/refs/tags/2.1.1.zip#egg=django-filer
pip-tools # needed for compilation of this file into requirements.txt, see start of file