forked from osl-incubator/makim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yaml
156 lines (154 loc) · 4.17 KB
/
mkdocs.yaml
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
site_name: Makim
site_url: https://osl-incubator.github.io/makim
repo_url: https://github.com/osl-incubator/makim.git
docs_dir: ./docs
site_dir: ./build
# extra_css:
# - stylesheets/extra.css
theme:
name: material
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
- header.autohide
- navigation.indexes
- navigation.instant
- search.highlight
- search.share
- search.suggest
icon:
repo: fontawesome/brands/github
logo: ./images/logo.png
favicon: ./images/favicon.ico
palette:
# Palette toggle for light mode
- scheme: default
primary: white
accent: lime
toggle:
icon: material/weather-night
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: white
accent: lime
toggle:
icon: material/weather-sunny
name: Switch to light mode
plugins:
- search
- macros
# - autorefs
# - exclude:
# glob:
# - backends/template.md
- mkdocstrings:
enable_inventory: true
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
selection:
docstring_style: numpy
filters:
- "!^Bounds"
- "!^__class__"
- "!^_filter_with_like"
- "!^_find_backends"
- "!^_key$"
- "!^_literal_value_hash_key"
- "!^_log"
- "!^_nbytes"
- "!^_safe_name$"
- "!^_schema_from_csv"
- "!^_to_geodataframe"
- "!^_tuplize"
- "!^ast_schema"
- "!^backend_table_type"
- "!^bounds$"
- "!^column$"
- "!^compiler$"
- "!^context_class"
- "!^database_class"
- "!^do_connect"
- "!^fetch_from_cursor"
- "!^get_schema"
- "!^largest$"
- "!^reconnect"
- "!^select_builder_class"
- "!^select_class"
- "!^table_class$"
- "!^table_expr_class"
- "!^translator_class"
- "!^Options$"
rendering:
show_category_heading: true
show_root_full_path: false
show_root_heading: true
show_root_toc_entry: true
show_source: false
- mkdocs-jupyter:
execute: false
include: ["*.ipynb"]
ignore:
- "*.py"
- ".ipynb_checkpoints/*"
# execute_ignore: "tutorial/*Geospatial*.ipynb"
include_source: true
include_requirejs: true
- literate-nav
markdown_extensions:
- admonition
- attr_list
- codehilite
- def_list
- footnotes
- md_in_html
- meta
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- docs/static/icons
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.magiclink:
provider: github
repo_url_shortener: true
- pymdownx.saneheaders
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- pymdownx.tabbed
- tables
- toc:
permalink: true
extra:
project_name: "Makim"
team:
- name: "Active maintainers"
members:
- xmnlab
- name: "Former maintainers"
members:
- xmnlab
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/opensciencelabs
- icon: fontawesome/brands/github
link: https://github.com/osl-incubator/makim.git
support_levels:
supported:
icon: :material-check-decagram:{ .verified }
description: Tested in CI. If this doesn't work for you, please [file an issue](https://github.com/osl-incubator/makim.git/issues/new).
bug:
icon: :material-bug:{ .bug }
description: Should work but doesn't because upstream is broken. Supported on a best-effort basis.
unsupported:
icon: :material-cancel:{ .cancel }
description: Unlikely to ever be supported or no upstream support.
copyright: "Copyright © 2022, Makim Team"