From 5b17bd4393cd8648fbcedc03e802639de06d6e12 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Wed, 16 Aug 2023 22:00:11 +0300 Subject: [PATCH] Added CLI as extra dependency --- pyproject.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6cd53590..ee424cf8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,9 @@ proxy = [ i18n = [ "Babel~=2.12.1", ] +cli = [ + "aiogram-cli~=1.0", +] test = [ "pytest~=7.4.0", "pytest-html~=3.2.0", @@ -114,6 +117,7 @@ features = [ "redis", "proxy", "i18n", + "cli", ] post-install-commands = [ "pre-commit install", @@ -133,6 +137,7 @@ features = [ "proxy", "i18n", "docs", + "cli", ] [tool.hatch.envs.docs.scripts] serve = "sphinx-autobuild --watch aiogram/ --watch CHANGELOG.rst --watch README.rst docs/ docs/_build/ {args}" @@ -146,9 +151,10 @@ features = [ "proxy", "i18n", "test", + "cli", ] extra-dependencies = [ - "butcher @ git+https://github.com/aiogram/butcher.git@v0.1.22" + "butcher @ git+https://github.com/aiogram/butcher.git@v0.1.22", ] [tool.hatch.envs.dev.scripts] @@ -165,6 +171,7 @@ features = [ "proxy", "i18n", "test", + "cli", ] [tool.hatch.envs.test.scripts]