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
This commit is contained in:
Arsen Arsenović 2024-12-18 01:49:58 +01:00 committed by Šarūnas Nejus
parent 9110a1110b
commit 994f9b83f1

View file

@ -26,11 +26,11 @@ packages = [
{ include = "beetsplug" }, { include = "beetsplug" },
] ]
include = [ # extra files to include in the sdist include = [ # extra files to include in the sdist
"docs", { path = "docs", format = "sdist" },
"extra", { path = "extra", format = "sdist" },
"man/**/*", { path = "man/**/*", format = "sdist" },
"test/*.py", { path = "test/*.py", format = "sdist" },
"test/rsrc/**/*", { path = "test/rsrc/**/*", format = "sdist" },
] ]
exclude = ["docs/_build", "docs/modd.conf", "docs/**/*.css"] exclude = ["docs/_build", "docs/modd.conf", "docs/**/*.css"]