Files
BastilleBSD_bastille/docs/conf.py

89 lines
2.4 KiB
Python
Raw Normal View History

2018-11-20 21:03:08 -07:00
# -- Project information -----------------------------------------------------
project = 'Bastille'
copyright = '2018-2025, Christer Edwards'
2018-11-20 21:03:08 -07:00
author = 'Christer Edwards'
# The short X.Y version
2025-12-03 17:03:53 -07:00
version = '1.2.2'
2018-11-20 21:03:08 -07:00
# The full version, including alpha/beta/rc tags
2025-12-04 07:55:58 -07:00
release = '1.2.2.251204'
2018-11-20 21:03:08 -07:00
# -- General configuration ---------------------------------------------------
extensions = ['sphinx_rtd_theme','sphinx_rtd_dark_mode']
2018-11-20 21:03:08 -07:00
templates_path = ['_templates']
2018-11-24 20:07:20 -07:00
source_suffix = ['.rst', '.md']
2018-11-20 21:03:08 -07:00
2023-11-21 13:20:16 -07:00
#from recommonmark.parser import CommonMarkParser
#source_parsers = {
# '.md': CommonMarkParser,
#}
2018-11-20 21:03:08 -07:00
2018-11-24 20:07:20 -07:00
master_doc = 'index'
2018-11-20 21:03:08 -07:00
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
pygments_style = None
# -- Options for HTML output -------------------------------------------------
html_logo = 'images/bastille.jpeg'
html_theme = 'sphinx_rtd_theme'
2018-11-20 21:03:08 -07:00
html_static_path = ['_static']
html_theme_options = {
'collapse_navigation': True,
'flyout_display': 'hidden',
'includehidden': True,
'language_selector': True,
'logo_only': False,
'navigation_depth': 4,
'prev_next_buttons_location': 'bottom',
'sticky_navigation': True,
'style_external_links': False,
'style_nav_header_background': 'white',
'theme_switcher': True,
'default_mode': 'auto',
'titles_only': False,
'vcs_pageview_mode': '',
'version_selector': True,
}
2018-11-20 21:03:08 -07:00
# -- Options for HTMLHelp output ---------------------------------------------
htmlhelp_basename = 'Bastilledoc'
# -- Options for LaTeX output ------------------------------------------------
latex_elements = {
}
latex_documents = [
(master_doc, 'Bastille.tex', 'Bastille Documentation',
'Christer Edwards', 'manual'),
]
# -- Options for manual page output ------------------------------------------
man_pages = [
(master_doc, 'bastille', 'Bastille Documentation',
[author], 1)
]
# -- Options for Texinfo output ----------------------------------------------
texinfo_documents = [
(master_doc, 'Bastille', 'Bastille Documentation',
author, 'Bastille', 'Bastille is an open-source system for automating deployment and management of containerized applications on FreeBSD.',
2018-11-20 21:03:08 -07:00
'Miscellaneous'),
]
# -- Options for Epub output -------------------------------------------------
epub_title = project
# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']