mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
New proposed default is 'alabaster', which looks nice but leaves less room to the core content. 'classic' replaces 'default'. Anyway readthedocs.org applies its own theme so this only impacts local builds.
41 lines
898 B
Python
41 lines
898 B
Python
AUTHOR = u'Adrian Sampson'
|
|
|
|
# General configuration
|
|
|
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.extlinks']
|
|
|
|
exclude_patterns = ['_build']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
|
|
project = u'beets'
|
|
copyright = u'2012, Adrian Sampson'
|
|
|
|
version = '1.3'
|
|
release = '1.3.11'
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
# External links to the bug tracker.
|
|
extlinks = {
|
|
'bug': ('https://github.com/sampsyo/beets/issues/%s', '#'),
|
|
'user': ('https://github.com/%s', ''),
|
|
}
|
|
|
|
# Options for HTML output
|
|
html_theme = 'classic'
|
|
htmlhelp_basename = 'beetsdoc'
|
|
|
|
# Options for LaTeX output
|
|
latex_documents = [
|
|
('index', 'beets.tex', u'beets Documentation',
|
|
AUTHOR, 'manual'),
|
|
]
|
|
|
|
# Options for manual page output
|
|
man_pages = [
|
|
('reference/cli', 'beet', u'music tagger and library organizer',
|
|
[AUTHOR], 1),
|
|
('reference/config', 'beetsconfig', u'beets configuration file',
|
|
[AUTHOR], 5),
|
|
]
|