aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: f8b07d78f88d4f0e27119498487f39658e08fe34 (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
30
31
32
[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"
"mc.py" = "3.1.1"

[tool.poetry.dev-dependencies]
black = "^22.3.0"
isort = "^5.10.1"
python-lsp-server = "^1.4.1"
pylsp-mypy = "^0.6.2"
pyls-isort = "^0.2.2"
python-lsp-black = "^1.2.1"

[tool.black]
line-length = 90

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

[tool.isort]
profile = "black"
filter_files = true
extend_skip = ["__init__.py"]