2023-11-26 08:24:47 +03:00
|
|
|
[tool.poetry]
|
2024-07-10 19:30:23 +03:00
|
|
|
package-mode = false
|
2023-11-26 08:24:47 +03:00
|
|
|
name = "ocab"
|
2024-07-10 19:30:23 +03:00
|
|
|
version = "2.0.0"
|
|
|
|
description = "OCAB is a modular Telegram bot"
|
2024-02-24 22:49:50 +03:00
|
|
|
license = "GPL-3.0-only"
|
|
|
|
authors = ["Семён Фомченков <s.fomchenkov@yandex.ru>"]
|
|
|
|
maintainers = [
|
|
|
|
"Илья Женецкий <ilya_zhenetskij@vk.com>",
|
|
|
|
"qualimock <qualimock@yandex.ru>",
|
2024-07-10 19:30:23 +03:00
|
|
|
"Кирилл Уницаев <fiersik.kouji@yandex.ru>",
|
|
|
|
"Максим Слипенко <maxim@slipenko.com>"
|
2024-02-24 22:49:50 +03:00
|
|
|
]
|
2023-11-26 08:24:47 +03:00
|
|
|
readme = "README.md"
|
2024-02-24 22:49:50 +03:00
|
|
|
repository = "https://gitflic.ru/project/armatik/ocab"
|
2024-07-10 19:30:23 +03:00
|
|
|
packages = [{include = "scripts"}]
|
|
|
|
|
|
|
|
[tool.poetry.urls]
|
|
|
|
"Bug Tracker" = "https://gitflic.ru/project/armatik/ocab/issue?status=OPEN"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
test = 'scripts.test:main'
|
|
|
|
init = 'scripts.init:main'
|
2023-11-26 08:24:47 +03:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-07-10 19:30:23 +03:00
|
|
|
python = ">=3.11.6,<3.13"
|
|
|
|
aiogram = "^3.10.0"
|
|
|
|
peewee = "^3.17.6"
|
2023-11-30 16:23:37 +03:00
|
|
|
pyyaml = "^6.0.1"
|
2024-07-10 19:30:23 +03:00
|
|
|
requests = "^2.32.3"
|
|
|
|
restrictedpython = "^7.1"
|
|
|
|
dataclasses-json = "^0.6.7"
|
|
|
|
semver = "^3.0.2"
|
2023-11-26 08:24:47 +03:00
|
|
|
|
2024-07-07 23:59:33 +03:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
flake8 = "^7.1.0"
|
|
|
|
black = "^24.4.2"
|
|
|
|
isort = "^5.13.2"
|
|
|
|
bandit = "^1.7.9"
|
2024-07-08 00:21:50 +03:00
|
|
|
pre-commit = "^3.7.1"
|
2024-07-10 19:30:23 +03:00
|
|
|
semver = "^3.0.2"
|
2024-07-07 23:59:33 +03:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
|
|
|
|
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
line_length = 88
|
|
|
|
multi_line_output = 3
|
|
|
|
skip_gitignore = true
|
|
|
|
|
2023-11-26 08:24:47 +03:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|