-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 778 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (33 loc) · 778 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 = "pokeapi"
description = "The Pokemon API"
version = "2.10.0"
requires-python = ">=3.10,<3.15"
readme = "README.md"
license = { file = "LICENSE.md" }
dependencies = [
"django==5.2.10",
"django-cachalot==2.8.0",
"django-cors-headers==4.9.0",
"django-redis==6.0.0",
"djangorestframework==3.16.1",
"drf-spectacular==0.29.0",
"gunicorn==23.0.0",
"legacy-cgi>=2.6.4 ; python_full_version >= '3.13'",
"psycopg[binary]==3.3.2",
"typing-extensions>=4.15.0",
]
[dependency-groups]
dev = [
"coverage==7.13.1",
"django-types>=0.24.0",
"djangorestframework-stubs>=3.17.1",
"pre-commit>=4.6.0",
"ruff>=0.15.21",
"ty>=0.0.65",
]
[tool.uv]
exclude-dependencies = [
"django-stubs",
"django-stubs-ext",
]