-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (73 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
77 lines (73 loc) · 1.5 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "lumintobot"
version = "1.2"
description = "Бот люминта с клёвыми функциями!"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"aiofiles>=25.1.0",
"aiogram>=3.26.0",
"aiohttp>=3.13.3",
"aiohttp-socks>=0.11.0",
"aioping>=0.4.0",
"asyncmy>=0.2.10",
"cryptg>=0.5.2",
"cryptography>=46.0.3",
"groq>=1.1.0",
"httpx[socks]>=0.28.1",
"loguru>=0.7.3",
"matplotlib>=3.10.7",
"orjson>=3.11.4",
"psutil>=7.1.3",
"pymorphy3>=2.0.6",
"pysocks>=1.7.1",
"pyyaml>=6.0.3",
"seaborn>=0.13.2",
"telethon>=1.42.0",
"uvloop>=0.22.1",
]
[tool.ruff]
exclude = ["depr", "scripts", ".venv"]
unsafe-fixes = true
line-length = 88
indent-width = 4
target-version = "py314"
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"W",
"F",
"Q",
"I",
"UP",
"PERF",
"ASYNC",
"C4",
"ISC",
"RET",
"FURB",
"FLY",
"TRY",
"PTH",
]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
docstring-code-line-length = "dynamic"
[tool.ty.rules]
invalid-argument-type = "ignore"
invalid-return-type = "ignore"
invalid-type-arguments = "ignore"
unresolved-attribute = "ignore"
possibly-missing-attribute = "ignore"
invalid-assignment = "ignore"
no-matching-overload = "ignore"