diff options
author | Jakub Ružička <jakub.ruzicka@nic.cz> | 2024-09-24 11:10:23 +0200 |
---|---|---|
committer | Aleš Mrázek <ales.mrazek@nic.cz> | 2024-09-30 11:16:07 +0200 |
commit | 0286a094d5d3017e0ec43a48fe806b59c95c6cc8 (patch) | |
tree | 950e2e47d0c95d3dd9a3c1b144686f504ee4560c /pyproject.toml | |
parent | python: meson constants.py template moved to knot_resolver module (diff) | |
download | knot-resolver-0286a094d5d3017e0ec43a48fe806b59c95c6cc8.tar.xz knot-resolver-0286a094d5d3017e0ec43a48fe806b59c95c6cc8.zip |
pyproject.toml: exclude meson templates
Make sure constants.py.in and meson.build are excluded from
knot_resolver python module.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 3b277fb5..e545eaa0 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 |