30 lines
570 B
TOML
30 lines
570 B
TOML
[tool.poetry]
|
|
name = "lenochka"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Pavel Kirilin <win10@list.ru>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
aiogram = "^2.13"
|
|
pydantic = "^1.8.2"
|
|
|
|
|
|
[tool.poetry.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"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|