Jasper-Publisher/docs/conf.py

56 lines
1.0 KiB
Python
Raw Normal View History

2024-06-06 07:00:28 +00:00
# Configuration file for the Sphinx documentation builder.
2024-06-06 06:52:22 +00:00
2024-06-06 07:00:28 +00:00
# -- Project information
2024-06-06 06:52:22 +00:00
2024-06-06 07:00:28 +00:00
project = 'Jasper Publisher'
copyright = '2024, Cited, Inc.'
author = 'Cited Inc'
2024-06-06 06:52:22 +00:00
2024-06-06 07:00:28 +00:00
release = '2.1'
version = '0.1.0'
2024-06-06 06:52:22 +00:00
2024-06-06 07:00:28 +00:00
# -- General configuration
2024-06-06 06:52:22 +00:00
extensions = [
2024-06-06 07:00:28 +00:00
'sphinx.ext.duration',
'sphinx.ext.doctest',
2024-06-06 06:52:22 +00:00
'sphinx.ext.autodoc',
2024-06-06 07:00:28 +00:00
'sphinx.ext.autosummary',
'sphinx.ext.intersphinx',
2024-06-06 06:52:22 +00:00
]
intersphinx_mapping = {
2024-06-06 07:00:28 +00:00
'python': ('https://docs.python.org/3/', None),
'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
2024-06-06 06:52:22 +00:00
}
2024-06-06 07:00:28 +00:00
intersphinx_disabled_domains = ['std']
templates_path = ['_templates']
# -- Options for HTML output
2024-06-06 06:52:22 +00:00
html_theme = 'sphinx_rtd_theme'
2024-06-06 07:00:28 +00:00
# -- Options for EPUB output
epub_show_urls = 'footnote'
2024-06-06 06:52:22 +00:00
2024-06-06 07:00:28 +00:00
formats: all
2024-06-06 06:52:22 +00:00
2024-06-06 07:00:28 +00:00
html_static_path = ['_static']
# These paths are either relative to html_static_path
# or fully qualified paths (eg. https://...)
html_css_files = [
2024-06-06 14:01:31 +00:00
'custom.css',
2024-06-06 06:52:22 +00:00
]
2024-06-06 07:00:28 +00:00
pygments_style = "sphinx"
2024-06-06 06:52:22 +00:00
2024-06-06 07:00:28 +00:00
html_logo = "qwc2-docs.png"
html_theme_options = {
'logo_only': True,
'display_version': False,
}