diff --git a/docs/source/conf.py b/docs/source/conf.py index 92d0244b888d2ed952ac39826584a94c51227e8c..777a97ef6433627299a29c35e79d3363c9f29dfa 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,29 +1,33 @@ # 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 +# -- Project information project = 'DART-WRF' copyright = '2023, Lukas Kugler' author = 'Lukas Kugler' release = '2023.2.17' -# -- General configuration --------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration +# -- General configuration -extensions = [] +extensions = [ + 'sphinx.ext.duration', + 'sphinx.ext.doctest', + 'sphinx.ext.autodoc', + 'sphinx.ext.autosummary', + 'sphinx.ext.intersphinx', +] -templates_path = ['_templates'] -exclude_patterns = [] +intersphinx_mapping = { + 'python': ('https://docs.python.org/3/', None), + 'sphinx': ('https://www.sphinx-doc.org/en/master/', None), +} +intersphinx_disabled_domains = ['std'] -root_doc = 'index2' +templates_path = ['_templates'] +# -- Options for HTML output -# -- Options for HTML output ------------------------------------------------- -# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output +html_theme = 'sphinx_rtd_theme' -html_theme = 'alabaster' -html_static_path = ['_static'] +# -- Options for EPUB output +epub_show_urls = 'footnote'