-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (70 loc) · 957 Bytes
/
pyproject.toml
File metadata and controls
74 lines (70 loc) · 957 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
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
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "fastapi-django-orm"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
# Can be lowered, if necessary
requires-python = ">=3.13"
dependencies = [
"celery>=5.4.0",
"dj-database-url==2.3.0",
"django==5.1.6",
"django-redis>=5.4.0",
"fastapi[standard]==0.115.8",
"psycopg>=3.2.4",
"pydantic-settings>=2.7.1",
"pytz>=2025.1",
"toml>=0.10.2",
]
[tool.uv]
dev-dependencies = [
"ipython>=8.32.0",
"ruff>=0.9.5",
]
[tool.ruff]
line-length = 100
exclude = [
"*/migrations/*",
]
[tool.ruff.format]
quote-style = "double"
[tool.ruff.lint]
extend-select = [
"UP",
"E",
"W",
"I",
"C90",
"N",
"ANN",
"ASYNC",
"BLE",
"FBT",
"B",
"A",
"C4",
"DTZ",
"T10",
"FA",
"ISC",
"ICN",
"INP",
"PIE",
"T20",
"PYI",
"Q",
"RET",
"SLF",
"SIM",
"TID",
"TCH",
"ARG",
"TD",
"FIX",
"ERA",
"PL",
"RUF",
]
ignore = [
"ISC001"
]