-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
80 lines (72 loc) · 2 KB
/
mkdocs.yml
File metadata and controls
80 lines (72 loc) · 2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
site_name: climatebenchpress.data-loader
strict: true
markdown_extensions:
- footnotes
- pymdownx.superfences
- pymdownx.highlight:
use_pygments: true
noclasses: true
- pymdownx.arithmatex:
generic: true
extra_javascript:
- js/katex.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.js
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/contrib/auto-render.min.js
extra_css:
- https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.16.7/katex.min.css
theme:
name: readthedocs
highlightjs: false
navigation_depth: 99
nav:
- Home: index.md
- Links:
- GitHub: https://github.com/ClimateBenchPress/data-loader/
plugins:
- exclude:
glob:
- requirements.txt
- include-markdown
- search
- autorefs
- mkdocstrings-python-generator:
source_dirs:
- nav_heading: [Documentation]
base: src
ignore: ["cf.py", "download.py", "canon.py", "monitor.py", "all.py"]
- mkdocstrings:
enable_inventory: true
handlers:
python:
options:
docstring_section_style: list
docstring_style: numpy
show_if_no_docstring: true
filters: [
"!^_$",
"!^_[^_]",
"!^__",
"__init__",
"!^cf$",
"!^registry$",
"!^get_stores$",
]
members_order: source
group_by_category: false
show_source: false
separate_signature: true
show_signature_annotations: true
signature_crossrefs: true
show_root_toc_entry: false
merge_init_into_class: true
annotations_path: source
summary:
attributes: false
classes: true
functions: true
modules: true
inventories:
- https://docs.python.org/3.12/objects.inv
- https://docs.xarray.dev/en/v2025.03.0/objects.inv
watch:
- src