forked from planetlabs/planet-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
95 lines (88 loc) · 2.29 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
site_name: Planet SDK for Python
site_url: https://planet-sdk-for-python-v2.readthedocs.io/en/latest/
site_author: https://developers.planet.com
site_description: >-
A Python library to discover and retrieve earth observation data from Planet Labs PBC.
repo_name: planetlabs/planet-client-python
repo_url: https://github.com/planetlabs/planet-client-python
edit_uri: ""
theme:
name: 'material'
logo: 'images/Planet_primarymark_RGB_White.png'
favicon: 'images/logo.svg'
custom_dir: 'docs/custom_theme/'
features:
- navigation.tabs
# - navigation.instant # Not compatible with i18n plugin
- navigation.tabs.sticky
- navigation.expand
- navigation.indexes
- navigation.top
- navigation.sections
- navigation.tracking
- search.suggest
- search.highlight
- toc.follow
- toc.integrate
palette:
- scheme: default
primary: #007f99
toggle:
icon: octicons/moon-24
name: Switch to dark mode
- scheme: slate
primary: #004352
toggle:
icon: octicons/sun-24
name: Switch to light mode
extra:
company:
name: "Planet Labs PBC"
product:
name: "Planet SDK for Python"
extra_css:
- stylesheets/extra.css
plugins:
- search
- mkdocstrings:
handlers:
python:
rendering:
show_root_heading: true
show_source: false
selection:
inherited_members: true
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
watch:
- planet
- docs/custom_theme/
nav:
- "Get Started":
- get-started/quick-start-guide.md
- get-started/get-your-planet-account.md
- get-started/venv-tutorial.md
- get-started/v2_earlyaccess.md
- get-started/upgrading.md
- "No Code CLI":
- cli/cli-guide.md
- cli/cli-intro.md
- cli/cli-data.md
- cli/cli-orders.md
- cli/cli-subscriptions.md
- cli/cli-tips-tricks.md
- cli/cli-reference.md
- "Python":
- python/sdk-guide.md
- python/sdk-reference.md
- "Resources":
- resources/index.md
- "Home": 'index.md'
markdown_extensions:
- pymdownx.highlight
- pymdownx.superfences
- mkdocs-click
- admonition
- toc:
permalink: True