1# Include tests (but avoid including *.pyc, etc.)
2prune test
3recursive-include test/rsrc *
4recursive-exclude test/rsrc *.pyc
5recursive-exclude test/rsrc *.pyo
6include test/*.py
7
8# Include relevant text files.
9include LICENSE README.rst
10# And generated manpages.
11include man/beet.1
12include man/beetsconfig.5
13
14# Include the Sphinx documentation.
15recursive-include docs *.rst *.py Makefile *.png
16prune docs/_build
17
18# Resources for web plugin.
19recursive-include beetsplug/web/templates *
20recursive-include beetsplug/web/static *
21
22# And for the lastgenre plugin.
23include beetsplug/lastgenre/genres.txt
24include beetsplug/lastgenre/genres-tree.yaml
25
26# Exclude junk.
27global-exclude .DS_Store
28
29# Include default config
30include beets/config_default.yaml
31
32# Shell completion template
33include beets/ui/completion_base.sh
34
35# Include extra bits
36recursive-include extra *
37