From a9f58d9cb025e7009adf428ccab3080a21b76caa Mon Sep 17 00:00:00 2001 From: Kyle King Date: Sat, 20 Feb 2021 10:35:17 -0500 Subject: [PATCH] build: make dependenpy optional --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 8f2afe7..4078ec3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,8 @@ colorama = "^0.4.3" pyyaml = "^5.3.1" "tap.py" = "^3.0" +dependenpy = {version = "^3.3.0", optional = true} + coverage = {version = "^5.2.1", optional = true} invoke = {version = "^1.4.1", optional = true} mypy = {version = "^0.782", optional = true} @@ -50,6 +52,7 @@ pytest-sugar = {version = "^0.9.4", optional = true} pytest-xdist = {version = "^2.1.0", optional = true} [tool.poetry.extras] +dependenpy = ["dependenpy"] tests = ["coverage", "invoke", "mypy", "pytest", "pytest-cov", "pytest-randomly", "pytest-sugar", "pytest-xdist"] [tool.poetry.dev-dependencies]