From: Jakub Ružička Date: Tue, 24 Sep 2024 09:10:23 +0000 (+0200) Subject: pyproject.toml: exclude meson templates X-Git-Tag: v6.0.9~9^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0286a094d5d3017e0ec43a48fe806b59c95c6cc8;p=thirdparty%2Fknot-resolver.git pyproject.toml: exclude meson templates Make sure constants.py.in and meson.build are excluded from knot_resolver python module. --- 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