From d91d51eb466f9d4681fb2d22e3f9da93d6f06c2e Mon Sep 17 00:00:00 2001 From: mcflugen Date: Wed, 13 Mar 2024 14:14:00 -0600 Subject: [PATCH] make black, isort optional dependencies --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f5b36f1b..edfd094d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,12 +32,10 @@ classifiers = [ "Topic :: Software Development :: Code Generators", ] dependencies = [ - "black", "click", "cookiecutter", "gitpython", "importlib-resources; python_version < '3.12'", - "isort>=5", "logoizer@ git+https://github.com/mcflugen/logoizer", "pyyaml", "tomli-w", @@ -67,6 +65,10 @@ dev = [ "pre-commit", "towncrier", ] +format = [ + "black", + "isort>=5", +] docs = [ "furo", "pygments>=2.4",