From ebb7a3f7c0c88e77bb5ed7e8d61965d238d0a3d0 Mon Sep 17 00:00:00 2001 From: Markus Rosenstihl Date: Thu, 19 Mar 2026 08:15:25 +0100 Subject: [PATCH] fixed pyporject.toml to add some uv support (Fixes #6) --- pyproject.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index fed528d..8893b81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,23 @@ [build-system] requires = ["setuptools"] build-backend = "setuptools.build_meta" + +[project] +requires-python = ">= 3.9" +name = "python3-damaris" +dynamic = ["version", + "dependencies", + "classifiers", + "keywords", + "license", + "readme", +] +authors = [ + {name = "Achim Gädke"}, + {name = "Christopher Schmitt"}, + {name = "Christian Tacke"}, + {name = "Markus Rosenstihl", email = "markus.rosenstihl@pkm.tu-darmstadt.de"}, +] +maintainers = [ + {name = "Markus Rosenstihl", email = "markus.rosenstihl@pkm.tu-darmstadt.de"} +]