From 95aa7880300cd296232ea83c071bba882f1f85d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Malte=20T=C3=B6pperwien?= Date: Tue, 24 Feb 2026 08:57:34 +0100 Subject: [PATCH] fix(distribution): distribution was missing config files Setuptools disregards yaml files as part of the package by default. So we have to add them explicitly. --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 6252944..85b3f20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,6 +63,9 @@ examples = [] [tool.setuptools.packages.find] include = ["mighty*", "examples"] +[tool.setuptools.package-data] +"*" = ["*.yaml"] + [tool.ruff] extend-exclude = []