-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (46 loc) · 1.04 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
[tool.poetry]
name = "karaka"
version = "0.2.0"
description = ""
authors = ["Nguyễn Hồng Quân <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.12"
dynaconf = "^3.2.5"
logbook = "^1.7.0.post0"
babel = "^2.15.0"
pydantic = "^2.8.2"
aiohttp-basicauth-middleware = "^1.2.0"
click = "^8.1.7"
tortoise-orm = "^0.21.4"
aiogram = "^3.10.0"
asyncpg = "^0.29.0"
aiohttp-pydantic = "^2.2.1"
chameleon-log = "^0.2.0"
systemd-python = {version = "^235", optional = true}
aerich = "^0.7.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
ruff = "^0.6.2"
mypy = "^1.11.0"
[tool.poetry.extras]
systemd = ["systemd-python"]
[tool.ruff.format]
quote-style = "single"
[tool.mypy]
plugins = [
"pydantic.mypy"
]
[[tool.mypy.overrides]]
module = [
"logbook.*",
"dynaconf.*",
"aiohttp_basicauth_middleware.*",
]
ignore_missing_imports = true
[tool.aerich]
tortoise_orm = "alarmbot.conf.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"