2024-07-12 09:35:34 -05:00
|
|
|
# Configuration file for the Sphinx documentation builder.
|
2014-02-16 01:18:30 -06:00
|
|
|
#
|
2024-07-12 09:35:34 -05:00
|
|
|
# For the full list of built-in configuration values, see the documentation:
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
2018-01-11 12:15:19 -06:00
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
2014-02-16 01:54:17 -06:00
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
from importlib.metadata import version as get_version
|
2014-02-16 01:54:17 -06:00
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
project = 'Tailbone'
|
|
|
|
copyright = '2010 - 2024, Lance Edgar'
|
|
|
|
author = 'Lance Edgar'
|
|
|
|
release = get_version('Tailbone')
|
2014-02-16 01:18:30 -06:00
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
2014-02-16 01:18:30 -06:00
|
|
|
|
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.autodoc',
|
|
|
|
'sphinx.ext.todo',
|
2015-07-29 11:09:38 -05:00
|
|
|
'sphinx.ext.intersphinx',
|
2015-02-13 01:12:20 -06:00
|
|
|
'sphinx.ext.viewcode',
|
2014-02-16 01:18:30 -06:00
|
|
|
]
|
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
templates_path = ['_templates']
|
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
|
2015-07-29 11:09:38 -05:00
|
|
|
intersphinx_mapping = {
|
2020-02-23 21:07:50 -06:00
|
|
|
'rattail': ('https://rattailproject.org/docs/rattail/', None),
|
2017-07-06 20:13:42 -05:00
|
|
|
'webhelpers2': ('https://webhelpers2.readthedocs.io/en/latest/', None),
|
2024-07-12 09:35:34 -05:00
|
|
|
'wuttaweb': ('https://rattailproject.org/docs/wuttaweb/', None),
|
|
|
|
'wuttjamaican': ('https://rattailproject.org/docs/wuttjamaican/', None),
|
2015-07-29 11:09:38 -05:00
|
|
|
}
|
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
# allow todo entries to show up
|
2020-02-24 12:27:26 -06:00
|
|
|
todo_include_todos = True
|
|
|
|
|
2014-02-16 01:18:30 -06:00
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
2014-02-16 01:18:30 -06:00
|
|
|
|
2024-07-12 09:35:34 -05:00
|
|
|
html_theme = 'furo'
|
|
|
|
html_static_path = ['_static']
|
2014-02-16 01:18:30 -06:00
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top
|
|
|
|
# of the sidebar.
|
|
|
|
#html_logo = None
|
2024-07-12 09:35:34 -05:00
|
|
|
#html_logo = 'images/rattail_avatar.png'
|
2014-02-16 01:18:30 -06:00
|
|
|
|
|
|
|
# Output file base name for HTML help builder.
|
2024-07-12 09:35:34 -05:00
|
|
|
#htmlhelp_basename = 'Tailbonedoc'
|