From 32094ef1fafe12f3d6789ff1487d2551fe224dda Mon Sep 17 00:00:00 2001 From: Dennis Terhorst Date: Fri, 30 Aug 2024 11:21:23 +0200 Subject: [PATCH] add optional dependency The readme describes an optional dependency towards `jsonschema`. This change reflects this in `pyproject.toml` by declaring `validation` dependencies. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index e23eb16..ee8c724 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,9 @@ classifiers = [ "Homepage" = "https://codebase.helmholtz.cloud/metamosim/metadata_archivist.git" [project.optional-dependencies] +validation = [ + "jsonschema", +] examples = [ "pyyaml", "jsonschema",