-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
77 lines (72 loc) · 1.69 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 = "objopa-ecosystem"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"aiofiles>=24.1.0",
"aiogram>=3.22.0",
"colorama>=0.4.6",
"curl-cffi>=0.13.0",
"fastapi[standard]>=0.118.0",
"gallery-dl>=1.30.8",
"google-genai>=1.39.1",
"httpx>=0.28.1",
"instaloader>=4.14.2",
"loguru>=0.7.3",
"lxml>=6.0.2",
"openai>=2.0.0",
"pydantic>=2.11.9",
"python-dotenv>=1.1.1",
"redis[hiredis]>=6.4.0",
"sympy>=1.14.0",
"telegramify-markdown>=0.5.1",
"ujson>=5.12.0",
"uvloop>=0.21.0 ; sys_platform == 'linux'",
"websockets>=15.0.1",
"wolframalpha>=5.1.3",
"xxhash>=3.5.0",
"yt-dlp>=2025.9.26",
"yt-dlp-ejs>=0.5.0",
]
[tool.mypy]
python_version = "3.13"
ignore_missing_imports = true
warn_unused_configs = true
warn_unused_ignores = true
warn_return_any = true
warn_redundant_casts = true
strict_optional = true
check_untyped_defs = true
show_error_codes = true
pretty = true
exclude = '(^venv|^\.venv|^\.git|__pycache__)'
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
ignore = ["E501"] # Разрешаем строки > 100 символов
[tool.pyright]
typeCheckingMode = "standard"
useLibraryCodeForTypes = true
reportMissingTypeStubs = false
reportPrivateUsage = false
reportUnknownMemberType = false
reportUnknownVariableType = false
reportUnknownArgumentType = false
reportUnknownLambdaType = false
exclude = [
"**/__pycache__",
".venv",
"venv",
".git"
]
[dependency-groups]
dev = [
"mypy>=1.18.2",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"ruff>=0.13.2",
]