mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 03:52:51 +01:00
In favor of Click's built-in support. The script is now generated using `_BEET_COMPLETE=source beet` instead of `beet completion`. We should strongly consider restoring the `beet completion` command just for backwards compatibility. All of this needs to be heavily publicized in the changelog.
33 lines
792 B
Text
33 lines
792 B
Text
# 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
|
|
|
|
# Include extra bits
|
|
recursive-include extra *
|