1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
# -*- coding: utf-8 -*-
# pylint: skip-file
import os
import sys
sys.path.insert(0, os.path.abspath(".."))
import cdlclient # noqa: E402
os.environ["CDL_DOC"] = "1"
# -- Project information -----------------------------------------------------
project = "DataLab Simple Client"
author = ""
copyright = "2023, Codra - Pierre Raybaut"
html_logo = "_static/DataLab-title.png"
latex_logo = "_static/DataLab-Frontpage.png"
release = cdlclient.__version__
# -- General configuration ---------------------------------------------------
extensions = ["sphinx.ext.intersphinx", "sphinx.ext.napoleon", "sphinx.ext.mathjax"]
templates_path = ["_templates"]
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
html_theme = "pydata_sphinx_theme"
html_theme_options = {"show_toc_level": 2}
html_static_path = ["_static"]
# -- Options for sphinx-intl package -----------------------------------------
locale_dirs = ["locale/"] # path is example but recommended.
gettext_compact = False # optional.
# -- Options for autodoc extension -------------------------------------------
autodoc_default_options = {
"members": True,
"member-order": "bysource",
}
# -- Options for intersphinx extension ---------------------------------------
intersphinx_mapping = {
"python": ("https://docs.python.org/3", None),
"guidata": ("https://guidata.readthedocs.io/en/latest/", None),
}
|