From 994f9b83f11a8775299af7b85a7697abd771a2af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= Date: Wed, 18 Dec 2024 01:49:58 +0100 Subject: [PATCH] pyproject.toml: don't install docs et al into the wheel wheels are directly unpacked into site-packages, so this means likely conflict with other packages --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2f730c9c3e..75c66051e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,11 +26,11 @@ packages = [ { include = "beetsplug" }, ] include = [ # extra files to include in the sdist - "docs", - "extra", - "man/**/*", - "test/*.py", - "test/rsrc/**/*", + { path = "docs", format = "sdist" }, + { path = "extra", format = "sdist" }, + { path = "man/**/*", format = "sdist" }, + { path = "test/*.py", format = "sdist" }, + { path = "test/rsrc/**/*", format = "sdist" }, ] exclude = ["docs/_build", "docs/modd.conf", "docs/**/*.css"]