-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconf.py
More file actions
59 lines (47 loc) · 1.96 KB
/
conf.py
File metadata and controls
59 lines (47 loc) · 1.96 KB
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
53
54
55
56
57
58
59
# 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
rst_prolog = """
.. |petab_doc_url| replace:: https://petab.readthedocs.io/en/latest/index.html
"""
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "PEtab GUI"
copyright = "2025, Paul Jonas Jost, Frank T. Bergmann"
author = "Paul Jonas Jost, Frank T. Bergmann"
release = "0.1.3"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"sphinx.ext.napoleon", # For Google/Numpy style docstrings
"sphinx.ext.viewcode", # Add links to highlighted source code
"sphinx.ext.githubpages", # For publishing on GitHub Pages
"sphinx.ext.todo", # Support todo items
"sphinx.ext.mathjax", # For LaTeX math rendering
"myst_parser", # For Markdown support
"sphinx_copybutton", # To allow copying code snippets
"sphinx_design", # For better design elements
]
templates_path = ["_templates"]
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = "sphinx_rtd_theme"
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {
"collapse_navigation": False,
"navigation_depth": -1,
"logo_only": True,
}
# Title
html_title = "PEtab GUI documentation"
# Navigation bar title
html_short_title = "PEtab GUI"
html_static_path = []