aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 3faa60d9a191cfc7500e6fdd1f0210de073e1c6d (plain)
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
[tool.poetry]
name = "funnypineapplebot"
version = "1.0.0"
description = "Бот для телеграм чата @FunnyPineappleChat"
authors = ["Igor Tolmachov <me@igorek.dev>"]
license = "GPL-3.0-only"

[tool.poetry.dependencies]
python = "^3.10"
aiogram = "^2.20"
SQLAlchemy = "^2b3"
pydantic = "^1.10.2"
tgen = "^0.3.0"

[tool.poetry.group.dev.dependencies]
mypy = "^0.991"
black = "^22.10.0"
isort = "^5.10.1"

[tool.black]
line-length = 90

[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_untyped_calls = true

[tool.isort]
profile = "black"