aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml21
1 files changed, 9 insertions, 12 deletions
diff --git a/pyproject.toml b/pyproject.toml
index f8b07d7..fe03f00 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,25 +8,22 @@ license = "GPL-3.0-only"
8[tool.poetry.dependencies] 8[tool.poetry.dependencies]
9python = "^3.10" 9python = "^3.10"
10aiogram = "^2.20" 10aiogram = "^2.20"
11"mc.py" = "3.1.1" 11SQLAlchemy = "^2b3"
12"mc.py" = "^4.0.0"
13pydantic = "^1.10.2"
12 14
13[tool.poetry.dev-dependencies] 15[tool.poetry.group.dev.dependencies]
14black = "^22.3.0" 16mypy = "^0.991"
17black = "^22.10.0"
15isort = "^5.10.1" 18isort = "^5.10.1"
16python-lsp-server = "^1.4.1"
17pylsp-mypy = "^0.6.2"
18pyls-isort = "^0.2.2"
19python-lsp-black = "^1.2.1"
20 19
21[tool.black] 20[tool.black]
22line-length = 90 21line-length = 90
23 22
24[tool.mypy] 23[tool.mypy]
25ignore_missing_imports = true 24ignore_missing_imports = true
26disallow_untyped_defs = false 25disallow_untyped_defs = true
27disallow_untyped_calls = false 26disallow_untyped_calls = true
28 27
29[tool.isort] 28[tool.isort]
30profile = "black" 29profile = "black" \ No newline at end of file
31filter_files = true
32extend_skip = ["__init__.py"]