conf.py
35 lines
| 1.1 KiB
| text/x-python
|
PythonLexer
r276 | # 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 | ||||
r277 | html_theme = 'furo' | |||
r276 | html_static_path = ['_static'] | |||
r278 | html_last_updated_fmt = ' %H:%m %b %d, %Y' | |||
html_show_sphinx = False | ||||