-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (49 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
50 lines (49 loc) · 1.16 KB
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
[project]
name = "drf-starter"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiohttp>=3.12.15",
"celery>=5.5.3",
"channels>=4.3.1",
"channels-redis>=4.3.0",
"daphne>=4.2.1",
"django>=5.2.5",
"django-celery-beat>=2.8.1",
"django-cors-headers>=4.7.0",
"django-filter>=25.1",
"django-model-utils>=5.0.0",
"django-unfold>=0.64.2",
"djangorestframework>=3.16.1",
"djangorestframework-simplejwt>=5.5.1",
"djoser>=2.3.3",
"drf-extensions>=0.8.0",
"loguru>=0.7.3",
"psycopg2-binary>=2.9.10",
"pydantic>=2.11.7",
"pydantic-settings>=2.10.1",
"pytest>=8.4.1",
"redis>=6.4.0",
"watchfiles>=1.1.0",
]
[dependency-groups]
dev = [
"django-extensions>=4.1",
"django-rosetta>=0.10.2",
"django-silk>=5.4.1",
"drf-spectacular>=0.28.0",
"ipython>=9.4.0",
"mypy>=1.17.1",
"pytest>=8.4.1",
"pytest-django>=4.11.1",
"black>=25.1.0",
"isort>=6.0.1",
"factory-boy>=3.3.3",
"coverage>=7.10.5",
"pydantic>=2.11.7",
"icecream>=2.1.7",
"werkzeug>=3.1.3",
"pytest-cov>=6.2.1",
]