mirror of
https://git.isptech.ru/ISPsystem/isp-maintenance.git
synced 2025-02-01 02:50:51 +01:00
33 lines
735 B
TOML
33 lines
735 B
TOML
[tool.poetry]
|
|
name = "mgrctl"
|
|
version = "0.1.0"
|
|
description = "Maintenance service for ISPsystem platforms"
|
|
authors = [
|
|
"MOIS3Y <s.zhukovskii@ispsystem.com>",
|
|
"Failak3 <v.shmidt@ispsystem.com>",
|
|
"a.garaev <a.garaev@ispsystem.com>",
|
|
"Ann_M <a.moskovkina@ispsystem.com>"
|
|
]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
peewee = "^3.17.0"
|
|
click = "^8.1.7"
|
|
requests = "^2.31.0"
|
|
environs = "^10.3.0"
|
|
pymysql = {extras = ["rsa"], version = "^1.1.0"}
|
|
poetry-plugin-export = "^1.6.0"
|
|
sh = "^2.0.7"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
flake8 = "^7.0.0"
|
|
|
|
[tool.poetry.scripts]
|
|
mgrctl = 'mgrctl.mgrctl:cli'
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|