Skip to content

Commit

Permalink
pyproject.toml: don't install docs et al into the wheel
Browse files Browse the repository at this point in the history
wheels are directly unpacked into site-packages, so this means likely
conflict with other packages
  • Loading branch information
ArsenArsen authored and snejus committed Dec 19, 2024
1 parent 9110a11 commit 994f9b8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down

0 comments on commit 994f9b8

Please sign in to comment.