-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.28 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>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["app"]
[project]
name = "telegram-ai-bot"
version = "0.1.0"
description = "Async Telegram bot with agentic AI, MySQL persistence, and modular tooling."
requires-python = ">=3.11"
authors = [{ name = "Bot Builder", email = "bot@example.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
]
dependencies = [
"aiogram>=3.6.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.2.1",
"pydantic-ai>=0.0.15",
"SQLAlchemy[asyncio]>=2.0.30",
"asyncmy>=0.2.9",
"alembic>=1.13.1",
"python-dateutil>=2.9.0.post0",
"httpx>=0.27.0",
"tenacity>=8.2.3",
"structlog>=24.1.0",
"redis>=5.0.5",
"orjson>=3.10.0",
"babel>=2.15.0",
"rapidfuzz>=3.9.0",
"aiohttp-socks>=0.8.4",
"telegramify-markdown>=0.4.1",
"Pillow>=10.3.0"
]
readme = "README.md"
[project.optional-dependencies]
dev = [
"ruff>=0.4.7",
"pytest>=8.2.0",
"pytest-asyncio>=0.23.7",
"pytest-cov>=5.0.0",
"mypy>=1.10.0",
"types-python-dateutil>=2.9.0.20240316"
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.pytest.ini_options]
asyncio_mode = "auto"