23 lines
419 B
TOML
23 lines
419 B
TOML
[project]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"aiogram>=3.14.0",
|
|
"pydantic>=2.9.2",
|
|
"pydantic-settings>=2.6.1",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"mypy<2.0.0,>=1.8.0",
|
|
"ruff<1.0.0,>=0.2.2",
|
|
"isort>=5.13.2",
|
|
"coverage<8.0.0,>=7.4.3",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|