-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
83 lines (67 loc) · 2.15 KB
/
conf.py
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# 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
import sys
sys.path.append("..")
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "ClimAg"
copyright = "2022-2025, Nithiya Streethran"
author = "Nithiya Streethran"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"myst_nb",
]
# https://myst-parser.readthedocs.io/en/latest/syntax/optional.html
myst_enable_extensions = [
"amsmath",
"dollarmath",
]
# disable sorting of functions by alphabetical order
autodoc_member_order = "bysource"
# do not execute Jupyter notebooks
nb_execution_mode = "off"
viewcode_line_numbers = True
# templates_path = ["_templates"]
exclude_patterns = [
"_build",
"Thumbs.db",
".DS_Store",
".ipynb_checkpoints",
".pytest_cache",
"__pycache__",
".coverage",
"environment.yml",
"convert-notebooks.sh",
".gitignore",
"README.md",
"LICENCE.txt",
"requirements.txt",
".readthedocs.yaml",
"other",
"results",
]
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = "pydata_sphinx_theme"
# html_static_path = ["_static"]
html_theme_options = {
"icon_links": [
{
# Label for this link
"name": "GitHub",
# URL where the link will redirect
"url": "https://github.com/ClimAg/ClimAg", # required
# Icon class (if 'type': 'fontawesome'), or path to local image
# (if 'type': 'local')
"icon": "fa-brands fa-github",
# The type of image to be used (see below for details)
"type": "fontawesome",
}
],
"navbar_align": "right",
}