forked from ibis-project/ibis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
147 lines (146 loc) · 3.96 KB
/
mkdocs.yml
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
site_name: Ibis Project
site_url: https://ibis-project.org
strict: true
repo_url: https://github.com/ibis-project/ibis
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
theme:
name: material
features:
- content.code.annotate
- content.tabs.link
- header.autohide
- navigation.indexes
- navigation.instant
- navigation.tracking
- search.highlight
- search.share
- search.suggest
icon:
repo: fontawesome/brands/github
logo: static/icons/ibis/logo.svg
favicon: static/icons/ibis/logo.svg
palette:
scheme: slate
primary: teal
accent: lime
custom_dir: docs/overrides
plugins:
- search
- mike
- autorefs
- git-revision-date
- exclude:
glob:
- backends/template.md
- backends/support_matrix.csv
- CONTRIBUTING.md
- gen-files:
scripts:
- gen_matrix.py
- table-reader
- macros
- mkdocstrings:
enable_inventory: true
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://docs.sqlalchemy.org/objects.inv
selection:
docstring_style: numpy
filters:
- "!^_"
- "^__init__$"
- "!^ast_schema"
- "!^backend_table_type"
- "!^column$"
- "!^compiler$"
- "!^do_connect"
- "!^fetch_from_cursor"
- "!^get_schema"
- "!^reconnect"
- "!^(context|database|select_builder|select|table|table_expr|translator)_class"
- "!^same_kind"
- "!^infer_(dtype_default|list|map|set|struct)$"
- "!^highest_precedence$"
- "!^scalar$"
- "!^column$"
- "!^option_context$"
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: true
ignore:
- "*.py"
execute_ignore: "tutorial/*Geospatial*.ipynb"
include_source: true
theme: dark
- literate-nav
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- meta
- pymdownx.arithmatex:
generic: true
- 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
- toc:
permalink: true
permalink_title: "Anchor link to this section for reference"
extra:
version:
provider: mike
project_name: "ibis"
team:
- name: "Active maintainers"
members:
- jreback
- datapythonista
- cpcloud
- kszucs
- name: "Former maintainers"
members:
- wesm
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/IbisData
- icon: fontawesome/brands/github
link: https://github.com/ibis-project/ibis
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/ibis-project/ibis/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 © 2014-2022, Ibis developers"