mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +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 = "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"]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue