diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 21 |
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] |
| 9 | python = "^3.10" | 9 | python = "^3.10" |
| 10 | aiogram = "^2.20" | 10 | aiogram = "^2.20" |
| 11 | "mc.py" = "3.1.1" | 11 | SQLAlchemy = "^2b3" |
| 12 | "mc.py" = "^4.0.0" | ||
| 13 | pydantic = "^1.10.2" | ||
| 12 | 14 | ||
| 13 | [tool.poetry.dev-dependencies] | 15 | [tool.poetry.group.dev.dependencies] |
| 14 | black = "^22.3.0" | 16 | mypy = "^0.991" |
| 17 | black = "^22.10.0" | ||
| 15 | isort = "^5.10.1" | 18 | isort = "^5.10.1" |
| 16 | python-lsp-server = "^1.4.1" | ||
| 17 | pylsp-mypy = "^0.6.2" | ||
| 18 | pyls-isort = "^0.2.2" | ||
| 19 | python-lsp-black = "^1.2.1" | ||
| 20 | 19 | ||
| 21 | [tool.black] | 20 | [tool.black] |
| 22 | line-length = 90 | 21 | line-length = 90 |
| 23 | 22 | ||
| 24 | [tool.mypy] | 23 | [tool.mypy] |
| 25 | ignore_missing_imports = true | 24 | ignore_missing_imports = true |
| 26 | disallow_untyped_defs = false | 25 | disallow_untyped_defs = true |
| 27 | disallow_untyped_calls = false | 26 | disallow_untyped_calls = true |
| 28 | 27 | ||
| 29 | [tool.isort] | 28 | [tool.isort] |
| 30 | profile = "black" | 29 | profile = "black" \ No newline at end of file |
| 31 | filter_files = true | ||
| 32 | extend_skip = ["__init__.py"] | ||
