diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ab2fe99 --- /dev/null +++ b/pyproject.toml | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | [tool.poetry] | ||
| 2 | name = "funnypineapplebot" | ||
| 3 | version = "1.0.0" | ||
| 4 | description = "Бот для телеграм чата @FunnyPineappleChat" | ||
| 5 | authors = ["Igor Tolmachov <me@igorek.dev>"] | ||
| 6 | license = "GPL-3.0-only" | ||
| 7 | |||
| 8 | [tool.poetry.dependencies] | ||
| 9 | python = "^3.10" | ||
| 10 | aiogram = "^2.20" | ||
| 11 | |||
| 12 | [tool.poetry.dev-dependencies] | ||
| 13 | black = "^22.3.0" | ||
| 14 | isort = "^5.10.1" | ||
| 15 | |||
| 16 | [tool.black] | ||
| 17 | line-length = 90 | ||
| 18 | |||
| 19 | [tool.mypy] | ||
| 20 | ignore_missing_imports = true | ||
| 21 | disallow_untyped_defs = true | ||
| 22 | disallow_untyped_calls = true | ||
| 23 | |||
| 24 | [tool.isort] | ||
| 25 | profile = "black" | ||
| 26 | filter_files = true | ||
| 27 | extend_skip = ["__init__.py"] \ No newline at end of file | ||
