-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
25 lines (22 loc) · 1.09 KB
/
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
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[packages]
django = "~=5.0" # web framework
django-cors-headers = "~=3.6" # support for configuring CORS headers
djangorestframework = "~=3.12" # api framework
environs = { version = "~=9.5", extras = ["django"] } # parse configuration from environment variables
psycopg2-binary = "~=2.8" # database driver for postgres
sentry-sdk = "~=0.14" # error reporting
whitenoise = { version = "~=5.2", extras = ["brotli"] } # better staticfile serving for django
simple-openid-connect = "~=1.0" # mafiasi identity authentication
drf-spectacular = { version = "~=0.26", extras = ["sidecar"] } # openapi schema generation
[dev-packages]
coverage = { version = "*", extras = ["toml"] }
django-debug-toolbar = "*"
pytest = "*"
pytest-django = "*"
pytest-env = "*"
[requires]
python_version = "3"