-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconf.py
More file actions
44 lines (35 loc) · 1.51 KB
/
Copy pathconf.py
File metadata and controls
44 lines (35 loc) · 1.51 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
"""
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
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "omfiles"
copyright = "2025, Open-Meteo"
author = "terraputix"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
"sphinx_autodoc_typehints",
"myst_parser",
]
intersphinx_mapping = {
"python": ("https://docs.python.org/3", "https://docs.python.org/3/objects.inv"),
"xarray": ("https://docs.xarray.dev/en/stable/", "https://docs.xarray.dev/en/stable/objects.inv"),
"numpy": ("https://numpy.org/doc/stable/", "https://numpy.org/doc/stable/objects.inv"),
"fsspec": (
"https://filesystem-spec.readthedocs.io/en/latest/",
"https://filesystem-spec.readthedocs.io/en/latest/objects.inv",
),
}
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]