Added gitea ci.
All checks were successful
/ docker_build (push) Successful in 1m15s
/ deploy_helm (push) Successful in 2m27s

This commit is contained in:
2025-07-08 13:05:10 +02:00
parent f5b528fd99
commit c3a161a9bd
14 changed files with 687 additions and 1382 deletions

View File

@ -1,29 +1,30 @@
[tool.poetry]
[project]
name = "lenochka"
version = "0.1.0"
description = ""
authors = ["Pavel Kirilin <win10@list.ru>"]
authors = [{ name = "Pavel Kirilin", email = "win10@list.ru" }]
requires-python = "~=3.9.0"
dependencies = [
"aiogram~=2.13.0",
"pydantic>=1.8.2,<2",
]
[tool.poetry.dependencies]
python = "^3.9"
aiogram = "^2.13"
pydantic = "^1.8.2"
[tool.poetry.scripts]
[project.scripts]
lenochka_wake_up = "lenochka.mouth:talk_to_the_wind"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.2"
black = "^23.9.1"
isort = "^5.12.0"
flake8 = "^6.1.0"
mypy = "^1.5.1"
yesqa = "^1.5.0"
pytest-env = "^1.0.1"
pytest-cov = "^4.1.0"
autoflake = "^2.2.1"
[dependency-groups]
dev = [
"pytest>=7.4.2,<8",
"black>=23.9.1,<24",
"isort>=5.12.0,<6",
"flake8>=6.1.0,<7",
"mypy>=1.5.1,<2",
"yesqa>=1.5.0,<2",
"pytest-env>=1.0.1,<2",
"pytest-cov>=4.1.0,<5",
"autoflake>=2.2.1,<3",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
requires = ["hatchling"]
build-backend = "hatchling.build"