-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (70 loc) · 1.49 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/telegram_bot_template"]
[project]
name = "telegram_bot_template"
version = "0.1.0"
description = ""
readme = "README.md"
requires-python = ">=3.12,<4.0.0"
dependencies = [
"redis~=5.0.8",
"adaptix~=3.0.0b7",
# bot
"aiogram~=3.11.0",
"aiogram-dialog~=2.1.0",
# i18n
"aiogram-i18n~=1.4.0",
"fluent-compiler~=1.1.0",
# broadcaster
"aiogram-broadcaster~=0.5.0",
# db
"psycopg[binary]~=3.2.1",
"sqlalchemy~=2.0.32",
# di
"dishka~=1.2.0",
]
[project.optional-dependencies]
test = [
"testcontainers~=4.7.2",
"tomlkit~=0.13.2",
# pytest
"pytest~=8.3.2",
"pytest-asyncio~=0.23.8",
"pytest-randomly~=3.15.0",
]
dev = [
"pre-commit~=3.8.0",
"aiogram-cli~=1.1.0",
# migrations
"alembic~=1.13.2",
"ruff~=0.5.7", # required for lint and format hooks in alembic
]
cov = [
"pytest-cov~=5.0.0",
]
[[project.authors]]
name = "Vladyslav Timofeev"
email = "Timofeevvladyslav49@gmail.com"
[tool.vulture]
paths = ["src", "tests"]
exclude = ["src/telegram_bot_template/infrastructure/db/migrations/versions"]
ignore_decorators = ["@ROUTER.message"]
ignore_names = [
"kwargs",
# contextmanager
"exc_type",
"exc_val",
"traceback",
# pydantic
"model_config",
# sqlalchemy
"__tablename__",
# aiogram-dialog
"message_input",
"button",
"widget",
"_render_text",
]