-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (44 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
46 lines (44 loc) · 820 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
[project]
name = "gradingsystembackend"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.11.13",
"asyncpg>=0.30.0",
"fastapi[standard]>=0.115.8",
"faststream[kafka]>=0.5.35",
"granian>=1.7.6",
"miniopy-async>=1.21.1",
"pydantic-settings>=2.8.0",
"sqlmodel>=0.0.22",
]
[dependency-groups]
dev = [
"ruff>=0.9.7",
]
[tool.ruff]
line-length = 120
target-version = "py311"
lint.select = [
"ALL",
]
lint.ignore = [
"D",
"COM812",
"FBT001",
"RUF001",
"PLR0913",
"TC002",
"TRY003",
"EM101",
"DTZ005",
"TC001",
"FAST002"
]
lint.fixable = [
"F401", # delete unused imports
"I001", # sort imports
"W292", # newline at end of file
"RUF022", # sort __all__ list
]