From 6ef5acdce17b95ed5166a32aa479eae0cb7f8cad Mon Sep 17 00:00:00 2001 From: Igor Tolmachov Date: Wed, 20 Apr 2022 02:00:20 +0900 Subject: Рефакторинг Добавлена система заявок в группу MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pyproject.toml (limited to 'pyproject.toml') diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ab2fe99 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,27 @@ +[tool.poetry] +name = "funnypineapplebot" +version = "1.0.0" +description = "Бот для телеграм чата @FunnyPineappleChat" +authors = ["Igor Tolmachov "] +license = "GPL-3.0-only" + +[tool.poetry.dependencies] +python = "^3.10" +aiogram = "^2.20" + +[tool.poetry.dev-dependencies] +black = "^22.3.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" +filter_files = true +extend_skip = ["__init__.py"] \ No newline at end of file -- cgit v1.2.3