-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1003 Bytes
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
[tool.poetry]
name = "Aiogram Template"
version = "0.1.0"
description = ""
authors = ["bodaue"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
aiogram = "^3.12.0"
pydantic-settings = "^2.3.4"
pydantic = "^2.8.2"
cachetools = "^5.4.0"
redis = "^5.0.7"
types-cachetools = "^5.4.0"
betterlogging = "^1.0.0"
sqlalchemy = "^2.0.31"
asyncpg = "^0.29.0"
alembic = "^1.13.2"
[tool.poetry.group.dev.dependencies]
mypy = "^1.10.1"
ruff = "^0.5.1"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = [
"ALL"
]
ignore = ["RUF001", "RUF012", "COM812", "ISC001", "D", "ANN101", "ANN102", "ANN401", "FBT"]
[tool.mypy]
plugins = ["pydantic.mypy"]
strict = true
follow_imports = "normal"
show_error_context = false
pretty = true
ignore_missing_imports = false
[[tool.mypy.overrides]]
module = "tgbot.handlers.*"
disallow_untyped_defs = false
disallow_incomplete_defs = false
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"