From c4a79766b7b5109fe2869490d6f8faa84a50da71 Mon Sep 17 00:00:00 2001 From: Tobias Waldekranz Date: Thu, 9 Jan 2025 16:21:13 +0100 Subject: [PATCH] statd: Make sure subpackages in python packages are distributed Rather than explicitly defining the sources, specify the package names and let poetry figure out the details. Otherwise, subpackages are not included, which we want to start using in yanger. --- src/statd/python/pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/statd/python/pyproject.toml b/src/statd/python/pyproject.toml index 5dc18f68..d5162e70 100644 --- a/src/statd/python/pyproject.toml +++ b/src/statd/python/pyproject.toml @@ -4,9 +4,9 @@ version = "1.0" description = "Linux to infix-YANG" license = "MIT" packages = [ - { include = "yanger/*.py" }, - { include = "cli_pretty/*.py" }, - { include = "ospf_status/*.py" } + { include = "yanger" }, + { include = "cli_pretty" }, + { include = "ospf_status" } ] authors = [ "KernelKit developers"