From 2bb87c401cdf484a09f6e091ede13881518dc45f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Mon, 30 Sep 2024 11:46:30 +0200 Subject: [PATCH] Move jupyter related deps into analysis group --- oonipipeline/pyproject.toml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/oonipipeline/pyproject.toml b/oonipipeline/pyproject.toml index 089f8cc9..a92db293 100644 --- a/oonipipeline/pyproject.toml +++ b/oonipipeline/pyproject.toml @@ -27,17 +27,21 @@ dependencies = [ "warcio ~= 1.7.4", "msgpack ~= 1.0.4", "click-loglevel ~= 0.5.0", - "altair ~= 4.2.0", - "pandas ~= 2.0.0", - "jupyterlab ~= 4.0.7", "temporalio ~= 1.7.0", "temporalio[opentelemetry] ~= 1.7.0", "opentelemetry-exporter-otlp-proto-grpc ~= 1.18.0", - "bokeh ~= 3.5.2", "uvicorn ~= 0.25.0", "pydantic-settings ~= 2.4.0", ] +[project.optional-dependencies] +analysis = [ + "altair ~= 4.2.0", + "pandas ~= 2.0.0", + "jupyterlab ~= 4.0.7", + "bokeh ~= 3.5.2", +] + [tool.hatch.build.targets.sdist] [tool.hatch.build.targets.wheel]