From 527a5ea7a896a9b00e0563abbbed7771a398971b Mon Sep 17 00:00:00 2001 From: aqua Date: Tue, 8 Nov 2022 10:46:07 +0200 Subject: Add python-sphinx docs --- doc.src/conf.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 doc.src/conf.py (limited to 'doc.src/conf.py') diff --git a/doc.src/conf.py b/doc.src/conf.py new file mode 100644 index 0000000..02bd18c --- /dev/null +++ b/doc.src/conf.py @@ -0,0 +1,28 @@ +# 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 = 'glitch' +copyright = '2022, aqua@' +author = 'aqua@' +release = '0.0.0' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = ['hawkmoth'] + +templates_path = ['_templates'] +exclude_patterns = [] + + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = "sphinx_rtd_theme" +html_static_path = ['_static'] -- cgit v1.2.1