Diff of /docs/source/conf.py [000000] .. [d90ecf]

Switch to unified view

a b/docs/source/conf.py
1
# Configuration file for the Sphinx documentation builder.
2
#
3
# For the full list of built-in configuration values, see the documentation:
4
# https://www.sphinx-doc.org/en/master/usage/configuration.html
5
6
# -- Project information -----------------------------------------------------
7
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8
9
project = 'scPanel'
10
copyright = '2024, Yi Carissa Xie'
11
author = 'Yi Carissa Xie'
12
release = '0.2.0'
13
14
# -- General configuration ---------------------------------------------------
15
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
16
17
extensions = [
18
    "myst_parser",
19
    "sphinx.ext.duration",
20
    "sphinx.ext.autosectionlabel",
21
    "sphinx.ext.autodoc",
22
    "sphinx.ext.napoleon",
23
    "autoapi.extension",
24
    "nbsphinx",
25
]
26
27
templates_path = ['_templates']
28
exclude_patterns = []
29
30
autoapi_type = "python"
31
autoapi_dirs = ["../../src"]
32
33
34
# -- Options for HTML output -------------------------------------------------
35
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
36
37
html_theme = "sphinx_rtd_theme"
38
html_static_path = ['_static']