-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathPipfile
More file actions
40 lines (37 loc) · 766 Bytes
/
Pipfile
File metadata and controls
40 lines (37 loc) · 766 Bytes
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django = "<5"
django-environ = "*"
django-bootstrap3 = "*"
psycopg2 = "*"
argon2-cffi = "*"
whitenoise = "*"
gunicorn = "*"
sentry-sdk = "*"
[dev-packages]
# we currently can't upgrade these two to newer versions
# because this would create a dependency conflict of pycodestyle
autopep8 = "==1.5.5"
flake8 = "<3.9"
pip-tools = "*"
pylint = "*"
pylint-django = "*"
pycodestyle = "*"
pydocstyle = "*"
pytest = "*"
pytest-django = "*"
pytest-sugar = "*"
pytest-cov = "*"
coverage = ">=4.4.0"
django-debug-toolbar = "*"
python-language-server = {extras = ["all"],version = "*"}
mypy = "*"
isort = "<5"
tomli = "*"
dill = "*"
exceptiongroup = "*"
[requires]
python_version = "3.12"