From 38b4982fce37e57ed2a134a7a019d3ee968d7224 Mon Sep 17 00:00:00 2001 From: Stuart Longland Date: Tue, 7 May 2024 17:11:47 +1000 Subject: [PATCH] pyproject.toml: Set dependencies for the `call` tool. --- pyproject.toml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed84b8a..8f8ecb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,6 +22,11 @@ dependencies = [ "signalslot" ] +[project.optional-dependencies] +call = [ + "prompt_toolkit" +] + [project.readme] file = "README.md" content-type = "text/markdown" @@ -41,9 +46,3 @@ log_cli = true [tool.setuptools.dynamic] version = {attr = "aioax25.__version__"} - -[tool.coverage.run] -omit = [ - # Debugging tool for dumping KISS traffic from socat hex dumps. - "aioax25/tools/dumphex.py" -]