forked from osl-incubator/growth-forge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yaml
150 lines (148 loc) · 3.99 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
site_name: Growth Forge
site_url: https://opensciencelabs.github.io/growth-forge
repo_url: https://github.com/xmnlab/growth-forge.git
docs_dir: ./docs
site_dir: ./build
# extra_css:
# - stylesheets/extra.css
# Page tree
nav:
- index.md
- Installation: installation.md
- Changelog: changelog.md
- Contributing: contributing.md
- API: api/references.md
- Notebook page: example.ipynb
theme:
name: material
features:
- content.code.annotate
- 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.png
palette:
scheme: slate
primary: white
accent: lime
# custom_dir: docs/overrides
plugins:
- search
- macros
# - autorefs
# - exclude:
# glob:
# - backends/template.md
- mkdocstrings:
enable_inventory: true
handlers:
python:
paths: [../src]
import:
- https://docs.python.org/3/objects.inv
options:
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$"
show_category_heading: true
show_root_full_path: false
show_root_heading: true
show_root_toc_entry: true
show_source: false
show_modules: true
- mkdocs-jupyter:
execute: true
ignore:
- "*.py"
# execute_ignore: "tutorial/*Geospatial*.ipynb"
include_source: true
theme: dark
- 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
- pymdownx.inlinehilite
- pymdownx.magiclink:
provider: github
repo_url_shortener: true
- pymdownx.saneheaders
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- toc
extra:
project_name: "Growth Forge"
team:
- name: "Active maintainers"
members:
- xmnlab
- name: "Former maintainers"
members:
- xmnlab
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/xmnlab
- icon: fontawesome/brands/github
link: https://github.com/xmnlab/growth-forge.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/xmnlab/growth-forge.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, Growth Forge Team"