diff --git a/pyproject.toml b/pyproject.toml index fc932e3..e46b66e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ authors = [ license = { file = "LICENSE" } dependencies = [ - "aiogram>=3.17.0", + "aiogram>=3.22.0", "asyncpg>=0.30.0", "fastapi[standard]>=0.115.8", "greenlet>=3.1.1", @@ -27,3 +27,17 @@ dependencies = [ "sqlmodel>=0.0.24", "ujson>=5.10.0", ] + +[project.optional-dependencies] +dev = [ + "build>=1.2.1", + "twine>=5.0.0", + "pytest>=8.0.0", + "ruff>=0.5.0", +] +i18n = [ + "aiogram[i18n]>=3.22.0", +] + +[tool.setuptools.packages.find] +where = ["src"]