-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (59 loc) · 1.48 KB
/
pyproject.toml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "app"
version = "0.0.0"
requires-python = ">=3.12,<3.13"
dependencies = [
"channels==4.2",
"channels-redis==4.2.1",
"django[argon2]==5.1.3",
"django-allauth[mfa]==65.2",
"django-bootstrap5==24.3",
"django-cleanup==9",
"django-environ==0.11.2",
"django-filter==24.3",
"django-htmx==1.21",
"django-logentry-admin==1.1",
"django-stubs-ext==5.1.1",
"djangorestframework==3.15.2",
"docutils==0.21.2",
"drf-spectacular==0.27.2",
"drf-standardized-errors[openapi]==0.14.1",
"httptools==0.6.4",
"pillow==11",
"psycopg[pool]==3.2.3",
"sentry-sdk[django]==2.19.0",
"socnet-rs",
"uvicorn==0.32.1",
"uvloop==0.21; implementation_name=='cpython' and (sys_platform=='darwin' or sys_platform=='linux')",
"websockets==14.1",
]
optional-dependencies.local = [
"covdefaults==2.3",
"debugpy==1.8.9",
"django-coverage-plugin==3.1",
"django-debug-toolbar==4.4.6",
"django-extra-checks==0.15.1",
"django-stubs==5.1.1",
"djangorestframework-stubs==3.15.1",
"djlint==1.36.1",
"factory-boy==3.3.1",
"mypy[faster-cache]==1.13",
"psycopg[binary]==3.2.3",
"pytest==8.3.3",
"pytest-cov==6",
"pytest-django==4.9",
"ruff==0.8.0",
"types-pillow==10.2.0.20240822",
"typing-extensions==4.12.2",
"watchfiles==1.0.0",
]
optional-dependencies.production = [
"gunicorn==23",
"psycopg[c]==3.2.3",
"redis[hiredis]==5.2",
"uvicorn-worker==0.2",
]
[tool.uv]
package = false
[tool.uv.sources]
socnet-rs = { path = "socnet_rs", editable = false }