From c5c4103ac38accf8e0e5e9c47d52d83b9debd31f Mon Sep 17 00:00:00 2001 From: Rene Brglez Date: Sun, 24 Nov 2024 10:57:37 +0100 Subject: [PATCH] #453: Added reporting option to pyproyect.toml --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a4ac7118..c4696d37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,12 @@ dynamic = ["version"] dependencies = ["Jinja2>=3"] requires-python = ">=3.6, <4" +[project.optional-dependencies] +reporting = [ + "pyparsing<3.1.0", + "pandas" +] + [project.urls] Homepage = "https://github.com/olofk/edalize" Documentation = "https://edalize.readthedocs.io"