-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scoutbot"
version = "0.4"
description = "ScoutBot - It rocks Telegram"
authors = [
{name = "runawaydevil"}
]
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"aiogram>=3.15.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.4.1,<2.10",
"pydantic-settings>=2.6.1",
"sqlmodel>=0.0.23",
"alembic>=1.14.0",
"aiohttp>=3.9.0,<3.11",
"feedparser>=6.0.11",
"redis>=5.0.0",
"apscheduler>=3.10.4",
"prometheus-client>=0.21.0",
"structlog>=24.4.0",
"python-dotenv>=1.0.1",
"python-multipart>=0.0.12",
"requests>=2.32.3",
"requests-oauthlib>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"black>=24.10.0",
"ruff>=0.7.0",
"mypy>=1.11.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false