mirror of
https://github.com/rtbrick/bngblaster.git
synced 2024-05-06 15:54:57 +00:00
33 lines
573 B
Python
33 lines
573 B
Python
# Configuration file for the Sphinx documentation builder.
|
|
|
|
# -- Project information
|
|
|
|
project = 'BNG Blaster'
|
|
copyright = '2020-2023, RtBrick, Inc.'
|
|
author = 'Christian Giese'
|
|
release = '0.8'
|
|
version = '0.8.X'
|
|
|
|
# -- General configuration
|
|
|
|
extensions = [
|
|
'sphinx_tabs.tabs'
|
|
]
|
|
|
|
master_doc = 'index'
|
|
html_logo = 'images/rtbrick_logo.png'
|
|
|
|
templates_path = ['_templates']
|
|
|
|
# -- Options for HTML output
|
|
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_theme_options = {
|
|
'logo_only': False,
|
|
'display_version': False,
|
|
}
|
|
|
|
# -- Options for EPUB output
|
|
|
|
epub_show_urls = 'footnote'
|