##// END OF EJS Templates
rcstack: 5.0.5 EULA added
rcstack: 5.0.5 EULA added

File last commit:

r279:19ce5c41
r279:19ce5c41
Show More
conf.py
36 lines | 1.2 KiB | text/x-python | PythonLexer
# 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
import datetime
now = datetime.datetime.today()
project = 'RhodeCode rcstack'
copyright = f'2010-{now.year}, RhodeCode Inc.'
author = 'RhodeCode Inc.'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
'sphinx_rtd_theme'
]
templates_path = ['_templates']
exclude_patterns = []
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'furo'
html_static_path = ['_static']
html_last_updated_fmt = ' %H:%m %b %d, %Y'
html_show_sphinx = False
html_extra_path = ['extra']