From dea1790f681c6e16a89a9905458c614d9ebb005e Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Sun, 10 Nov 2024 16:01:56 +0100 Subject: [PATCH] Fix pyproject.toml optional-dependencies (#59) Declare `optional-dependencies` as dynamic to use the settings from `setup.cfg`. Closes #58 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 41f712b..4121732 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" name = "fiddy" description = "Finite difference methods" readme = "README.md" -dynamic = ["version"] +dynamic = ["version", "optional-dependencies"] license = { file = "LICENSE" } authors = [ { name = "The fiddy developers", email = "dilan.pathirana@uni-bonn.de" }