-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 845 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 845 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
[project]
name = "fkweb"
version = "0.1.3"
description = "Frikanalen's Django-based backend API"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"dj-database-url==2.3.0",
"django==5.2",
"django-cors-headers==4.7.0",
"django-durationfield==0.5.5",
"django-environ>=0.12.0",
"django-filter==25.1",
"django-model-utils==5.0.0",
"django-phonenumber-field[phonenumbers]==8.0.0",
"djangorestframework==3.16.0",
"djangorestframework-camel-case>=1.4.2",
"drf-spectacular==0.28.0",
"drf-standardized-errors[openapi]>=0.15.0",
"gunicorn==23.0.0",
"markdown==3.7",
"mypy>=1.11",
"psycopg2-binary>=2.9.10",
"pymemcache>=4.0.0",
"python-dateutil==2.9.0.post0",
"requests==2.32.3",
]
[tool.ruff]
line-length = 100
[dependency-groups]
dev = [
"mypy>=1.17.1",
]