43 lines
1.5 KiB
Python
43 lines
1.5 KiB
Python
# Configuration file for the Sphinx documentation builder.
|
|
#
|
|
# For the full list of built-in configuration values, see the documentation:
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html
|
|
|
|
# -- Project information -----------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
|
|
|
|
project = 'WuttJamaican'
|
|
copyright = '2023, Lance Edgar'
|
|
author = 'Lance Edgar'
|
|
release = '0.1'
|
|
|
|
# -- General configuration ---------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
|
|
|
|
extensions = [
|
|
'sphinx.ext.autodoc',
|
|
'sphinx.ext.intersphinx',
|
|
'sphinxcontrib.programoutput',
|
|
'sphinx.ext.viewcode',
|
|
'sphinx.ext.todo',
|
|
]
|
|
|
|
templates_path = ['_templates']
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
|
|
|
|
intersphinx_mapping = {
|
|
'packaging': ('https://packaging.python.org/en/latest/', None),
|
|
'python': ('https://docs.python.org/3/', None),
|
|
'python-configuration': ('https://python-configuration.readthedocs.io/en/latest/', None),
|
|
'rattail': ('https://rattailproject.org/docs/rattail/', None),
|
|
'rattail-manual': ('https://rattailproject.org/docs/rattail-manual/', None),
|
|
'sqlalchemy': ('http://docs.sqlalchemy.org/en/latest/', None),
|
|
}
|
|
|
|
|
|
# -- Options for HTML output -------------------------------------------------
|
|
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
|
|
|
|
html_theme = 'alabaster'
|
|
html_static_path = ['_static']
|