beets/MANIFEST.in
Adrian Sampson b762eed171 Remove home-made bash completion infrastructure
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.
2016-09-23 02:59:16 -04:00

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 *