-
Notifications
You must be signed in to change notification settings - Fork 6
/
Pipfile
42 lines (38 loc) · 927 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
42
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django = "~=4.2"
channels = "~=4.1"
daphne = "~=4.1"
gunicorn = "~=22.0"
social-auth-app-django = "~=5.4"
requests = "~=2.32"
psutil = "~=5.9"
celery = "~=5.4.0" # warning: doesn't use semantic versioning (lock minor version)
django-celery-results = "~=2.5"
django-markdownify = "~=0.9" # includes the markdown package
psycopg = "~=3.1"
virtualenv = "~=20.26"
redis = "~=5.0"
channels-redis = "~=4.2"
django-extensions = "~=3.2"
ipython = "~=8.24.0" # warning: doesn't use semantic versioning (lock minor version)
mosspy = "~=1.0"
django-debug-toolbar = "~=4.4"
[dev-packages]
pytest-django = "~=4.8"
pytest-xdist = "~=3.6"
django-stubs = "*"
pre-commit = "*"
typing-extensions = "*"
sphinx = "*"
furo = "*"
myst-parser = "*"
sphinx-copybutton = "*"
sphinxcontrib-django = "*"
[ci]
pytest-cov = "*"
[requires]
python_version = "3.11"