Files

37 lines
671 B
Python
Raw Permalink Normal View History

2022-03-30 23:47:00 +02:00
# Configuration file for the Sphinx documentation builder.
# -- Project information
project = 'BNG Blaster'
2024-02-23 21:12:51 +01:00
copyright = '2020-2024, RtBrick, Inc.'
2022-03-30 23:47:00 +02:00
author = 'Christian Giese'
2022-10-31 23:21:28 +00:00
release = '0.8'
2022-12-12 22:01:39 +00:00
version = '0.8.X'
2022-03-30 23:47:00 +02:00
# -- 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,
}
2023-11-03 08:56:38 +00:00
html_static_path = ['_static']
html_css_files = [
'custom.css', # Add your custom CSS file
]
2022-03-30 23:47:00 +02:00
# -- Options for EPUB output
epub_show_urls = 'footnote'