mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
36 lines
857 B
Text
36 lines
857 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
|
|
|
|
# Shell completion template
|
|
include beets/ui/completion_base.sh
|
|
|
|
# Include extra bits
|
|
recursive-include extra *
|