From 0286a094d5d3017e0ec43a48fe806b59c95c6cc8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jakub=20Ru=C5=BEi=C4=8Dka?= Date: Tue, 24 Sep 2024 11:10:23 +0200 Subject: [PATCH] pyproject.toml: exclude meson templates Make sure constants.py.in and meson.build are excluded from knot_resolver python module. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3b277fb5d..e545eaa0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ documentation = "https://www.knot-resolver.cz/documentation" packages = [ {include = "knot_resolver", from = "python"} ] +exclude = ["**/*.in", "**/meson.build"] # See currently open issue about building C extensions here: # https://github.com/python-poetry/poetry/issues/2740 -- 2.47.2