2023-11-26 08:24:47 +03:00
|
|
|
[tool.poetry]
|
2024-08-16 22:42:02 +03:00
|
|
|
name = "karkas-monorepo"
|
2024-07-10 19:30:23 +03:00
|
|
|
version = "2.0.0"
|
2024-08-16 22:42:02 +03:00
|
|
|
description = "Karkas 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-08-16 22:42:02 +03:00
|
|
|
repository = "https://gitflic.ru/project/alt-gnome/karkas"
|
2024-08-02 16:59:51 +03:00
|
|
|
packages = [
|
|
|
|
{ include = "scripts" }
|
|
|
|
]
|
2024-07-10 19:30:23 +03:00
|
|
|
|
|
|
|
[tool.poetry.urls]
|
2024-08-16 22:42:02 +03:00
|
|
|
"Bug Tracker" = "https://gitflic.ru/project/alt-gnome/karkas/issue?status=OPEN"
|
2024-07-10 19:30:23 +03:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
test = 'scripts.test:main'
|
|
|
|
init = 'scripts.init:main'
|
2024-07-14 17:07:46 +03:00
|
|
|
module = 'scripts.module:main'
|
2023-11-26 08:24:47 +03:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-08-19 15:44:45 +03:00
|
|
|
python = ">=3.10,<=3.12"
|
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"
|