You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
817 B

# -*- coding: utf-8 -*-
import os
import sys
sys.path.insert(0, os.path.abspath("../.."))
project = "EMCAD"
copyright = "2024, EMCAD Team"
author = "EMCAD Team"
release = "1.0.0"
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
"sphinx.ext.autosummary",
"sphinx_rtd_theme",
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
html_logo = "../../docs/EMCAD_architecture.jpg"
html_theme_options = {
"navigation_depth": 4,
"collapse_navigation": False,
"sticky_navigation": True,
"includehidden": True,
}
autodoc_default_options = {
"members": True,
"undoc-members": True,
"show-inheritance": True,
}
autosummary_generate = True