mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
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:
parent
9110a1110b
commit
994f9b83f1
1 changed files with 5 additions and 5 deletions
|
|
@ -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"]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue