mirror of
https://github.com/beetbox/beets.git
synced 2025-12-07 09:04:33 +01:00
Exclude plugin tests, include all files from MANIFEST.in
This commit is contained in:
parent
af41eef776
commit
ed3a53f2fe
3 changed files with 14 additions and 37 deletions
36
MANIFEST.in
36
MANIFEST.in
|
|
@ -1,36 +0,0 @@
|
||||||
# Include tests (but avoid including *.pyc, etc.)
|
|
||||||
prune test
|
|
||||||
recursive-include test/rsrc *
|
|
||||||
recursive-exclude test/rsrc *.pyc
|
|
||||||
recursive-exclude test/rsrc *.pyo
|
|
||||||
include test/*.py
|
|
||||||
|
|
||||||
# Include relevant text files.
|
|
||||||
include LICENSE README.rst
|
|
||||||
# And generated manpages.
|
|
||||||
include man/beet.1
|
|
||||||
include man/beetsconfig.5
|
|
||||||
|
|
||||||
# Include the Sphinx documentation.
|
|
||||||
recursive-include docs *.rst *.py Makefile *.png
|
|
||||||
prune docs/_build
|
|
||||||
|
|
||||||
# Resources for web plugin.
|
|
||||||
recursive-include beetsplug/web/templates *
|
|
||||||
recursive-include beetsplug/web/static *
|
|
||||||
|
|
||||||
# And for the lastgenre plugin.
|
|
||||||
include beetsplug/lastgenre/genres.txt
|
|
||||||
include beetsplug/lastgenre/genres-tree.yaml
|
|
||||||
|
|
||||||
# Exclude junk.
|
|
||||||
global-exclude .DS_Store
|
|
||||||
|
|
||||||
# Include default config
|
|
||||||
include beets/config_default.yaml
|
|
||||||
|
|
||||||
# Shell completion template
|
|
||||||
include beets/ui/completion_base.sh
|
|
||||||
|
|
||||||
# Include extra bits
|
|
||||||
recursive-include extra *
|
|
||||||
|
|
@ -7,12 +7,18 @@ Unreleased
|
||||||
----------
|
----------
|
||||||
|
|
||||||
New features:
|
New features:
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
* :doc:`plugins/lyrics`: LRCLib will fallback to plain lyrics if synced lyrics
|
* :doc:`plugins/lyrics`: LRCLib will fallback to plain lyrics if synced lyrics
|
||||||
are not found and `synced` flag is set to `yes`.
|
are not found and `synced` flag is set to `yes`.
|
||||||
|
* Synchronise files included in the source distribution with what we used to
|
||||||
|
have before the introduction of Poetry.
|
||||||
|
:bug:`5531`
|
||||||
|
:bug:`5526`
|
||||||
|
|
||||||
For packagers:
|
For packagers:
|
||||||
|
|
||||||
Other changes:
|
Other changes:
|
||||||
|
|
||||||
2.2.0 (December 02, 2024)
|
2.2.0 (December 02, 2024)
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,14 @@ packages = [
|
||||||
{ include = "beets" },
|
{ include = "beets" },
|
||||||
{ include = "beetsplug" },
|
{ include = "beetsplug" },
|
||||||
]
|
]
|
||||||
include = ["test", "man/**/*"] # extra files to include in the sdist
|
include = [ # extra files to include in the sdist
|
||||||
|
"docs",
|
||||||
|
"extra",
|
||||||
|
"man/**/*",
|
||||||
|
"test/*.py",
|
||||||
|
"test/rsrc/**/*",
|
||||||
|
]
|
||||||
|
exclude = ["docs/_build", "docs/modd.conf", "docs/**/*.css"]
|
||||||
|
|
||||||
[tool.poetry.urls]
|
[tool.poetry.urls]
|
||||||
Changelog = "https://github.com/beetbox/beets/blob/master/docs/changelog.rst"
|
Changelog = "https://github.com/beetbox/beets/blob/master/docs/changelog.rst"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue