forked from danidee10/channels_postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
30 lines (26 loc) · 705 Bytes
/
Pipfile
File metadata and controls
30 lines (26 loc) · 705 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
asgiref = "==3.*"
channels = "==4.*"
msgpack = "==1.*"
psycopg = {extras = ["pool"], version = "==3.*"}
[dev-packages]
async-timeout = "==5.*"
django = "==5.*"
django-stubs = {extras = ["compatible-mypy"], version = "==5.*"}
pylint = "==3.*"
pylint-django = "==2.*"
pytest = "==8.*"
pytest-asyncio = "==0.*"
pytest-cov = "==6.*"
ruff = "0.*"
tox = "==4.*"
[requires]
python_version = "3.13"
[scripts]
tests = "tox"
format = "ruff format ."
start_postgres = "docker run --rm --name channels_postgres_db -e POSTGRES_PASSWORD=password -e POSTGRES_DB=postgres -e POSTGRES_USER=postgres -p 5432:5432 postgres:17-alpine"