-
Notifications
You must be signed in to change notification settings - Fork 5
/
Pipfile
41 lines (36 loc) · 941 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple/"
verify_ssl = true
name = "pypi"
[[source]]
url = "https://www.piwheels.org/simple"
verify_ssl = true
name = "piwheels"
[packages]
Django = ">=4.2,<6"
Pillow = ">=4.3.0"
pilkit = ">=2.0"
django-ckeditor = ">=5.4.0"
django-extensions = ">=2.0.6"
django-appconf = ">=1.0.1"
django-imagekit = ">=4.0.1"
Pygments = "*"
dj-database-url = ">=0.5.0"
social-auth-core = {version = ">=2.0.0",extras = ["openidconnect"]}
social-auth-app-django = ">=3.1.0"
psycopg2 = "*"
[dev-packages]
"flake8" = "*"
pytest-django = "*"
django-debug-toolbar = "*"
docutils = "*"
[requires]
python_version = "3.12"
[scripts]
server = "python manage.py runserver"
migrations = "python manage.py migrate"
collectstatic = "python manage.py collectstatic --noinput"
makemessages = "python manage.py makemessages -a"
compilemessages = "python manage.py compilemessages"
shell = "python manage.py shell_plus"
tests = "pytest"