-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
56 lines (50 loc) · 1.33 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
site_name: Planet Auth Library
site_description: Planet Auth Library
site_url: https://planet.com/
# TODO: enable strict docs
strict: false
#watch:
# - src
theme:
name: 'material'
logo: img/logo.svg
favicon: img/logo.svg
plugins:
- search:
indexing: 'full'
- macros:
include_dir: 'docs/examples'
on_error_fail: true
- autorefs
- mkdocstrings:
handlers:
python:
# paths: [src/planet]
options:
show_root_heading: true
inherited_members: true
show_root_members_full_path: true
show_object_full_path: true
show_source: false
show_bases: true
# show_inheritance_diagram: true
# show_submodules: true
filters:
- "!^_" # exclude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
repo_name: planetlabs/planet-auth-python
repo_url: https://github.com/planetlabs/planet-auth-python
#edit_uri: ""
nav:
- Introduction: 'index.md'
- CLI Reference:
- plauth: 'cli-plauth.md'
- Configuration: 'configuration.md'
- API Reference: 'api.md'
- Examples: 'examples.md'
- Changelog: 'changelog.md'
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- mkdocs-click
- admonition