aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorIgor Tolmachov <me@igorek.dev>2022-04-20 02:00:20 +0900
committerIgor Tolmachov <me@igorek.dev>2022-04-20 02:00:20 +0900
commit6ef5acdce17b95ed5166a32aa479eae0cb7f8cad (patch)
treec3baca11b8eb0f8ff62e9125f448fe13e71c7ec3 /pyproject.toml
parente2ec80ca3d1cb6c7329c21d4934245e26ec9e74a (diff)
downloadkarpov_ai_bot-6ef5acdce17b95ed5166a32aa479eae0cb7f8cad.tar.gz
karpov_ai_bot-6ef5acdce17b95ed5166a32aa479eae0cb7f8cad.zip
Рефакторинг
Добавлена система заявок в группу
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml27
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]
2name = "funnypineapplebot"
3version = "1.0.0"
4description = "Бот для телеграм чата @FunnyPineappleChat"
5authors = ["Igor Tolmachov <me@igorek.dev>"]
6license = "GPL-3.0-only"
7
8[tool.poetry.dependencies]
9python = "^3.10"
10aiogram = "^2.20"
11
12[tool.poetry.dev-dependencies]
13black = "^22.3.0"
14isort = "^5.10.1"
15
16[tool.black]
17line-length = 90
18
19[tool.mypy]
20ignore_missing_imports = true
21disallow_untyped_defs = true
22disallow_untyped_calls = true
23
24[tool.isort]
25profile = "black"
26filter_files = true
27extend_skip = ["__init__.py"] \ No newline at end of file