2021-01-06 15:33:56 -06:00
|
|
|
# Configuration file for the Sphinx documentation builder.
|
|
|
|
#
|
|
|
|
# This file only contains a selection of the most common options. For a full
|
|
|
|
# list see the documentation:
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
|
|
|
|
# -- Path setup --------------------------------------------------------------
|
|
|
|
|
|
|
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
|
|
# add these directories to sys.path here. If the directory is relative to the
|
|
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
|
|
|
#
|
|
|
|
# import os
|
|
|
|
# import sys
|
|
|
|
# sys.path.insert(0, os.path.abspath('.'))
|
|
|
|
|
|
|
|
|
2021-01-07 17:26:47 -06:00
|
|
|
# TODO: not sure why i had to explicitly declare this for the sake of buildbot,
|
|
|
|
# when it worked for me fine locally without doing this.
|
|
|
|
master_doc = 'index'
|
|
|
|
|
|
|
|
|
2021-01-06 15:33:56 -06:00
|
|
|
# -- Project information -----------------------------------------------------
|
|
|
|
|
2021-10-30 15:09:09 -05:00
|
|
|
project = 'Rattail Manual'
|
2023-06-08 11:14:01 -05:00
|
|
|
copyright = '2021-2023, Lance Edgar'
|
2021-01-06 15:33:56 -06:00
|
|
|
author = 'Lance Edgar'
|
|
|
|
|
|
|
|
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
|
|
# ones.
|
|
|
|
extensions = [
|
2021-01-15 15:16:23 -06:00
|
|
|
'sphinx.ext.intersphinx',
|
2022-12-28 17:11:35 -06:00
|
|
|
'sphinx.ext.todo',
|
2021-01-06 15:33:56 -06:00
|
|
|
]
|
|
|
|
|
2021-01-15 15:16:23 -06:00
|
|
|
intersphinx_mapping = {
|
2024-08-27 19:59:08 -05:00
|
|
|
'alembic': ('https://alembic.sqlalchemy.org/en/latest/', None),
|
2021-01-15 15:16:23 -06:00
|
|
|
'rattail': ('https://rattailproject.org/docs/rattail/', None),
|
2022-11-19 21:46:13 -06:00
|
|
|
'tailbone': ('https://rattailproject.org/docs/tailbone/', None),
|
2023-12-30 17:00:40 -06:00
|
|
|
'wuttjamaican': ('https://rattailproject.org/docs/wuttjamaican/', None),
|
2021-01-15 15:16:23 -06:00
|
|
|
}
|
|
|
|
|
2021-01-06 15:33:56 -06:00
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
|
|
templates_path = ['_templates']
|
|
|
|
|
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
|
|
|
# This pattern also affects html_static_path and html_extra_path.
|
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
|
|
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
|
|
# a list of builtin themes.
|
|
|
|
#
|
2024-07-01 10:53:04 -05:00
|
|
|
html_theme = 'furo'
|
2021-01-06 15:33:56 -06:00
|
|
|
|
|
|
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
|
|
# relative to this directory. They are copied after the builtin static files,
|
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
2021-01-07 16:48:14 -06:00
|
|
|
html_static_path = ['_static']
|
2022-12-28 17:11:35 -06:00
|
|
|
|
|
|
|
|
|
|
|
# -- Lance extra stuff -------------------------------------------------------
|
|
|
|
|
|
|
|
# allow todo entries to show up
|
|
|
|
todo_include_todos = True
|