-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
39 lines (37 loc) · 1.05 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
site_name: GPyG Documentation
theme:
name: readthedocs
highlightjs: true
nav:
- Home: "index.md"
- Usage:
- Getting Started: "usage/getting_started.md"
- Key Management: "usage/key_management.md"
- Message Management: "usage/message_management.md"
- Smart Card Management: "usage/card_management.md"
- API Reference:
- GPG Instance: "api/gpg-instance.md"
- Operators:
- Key Operations: "api/operators/keys.md"
- Message Operations: "api/operators/messages.md"
- SmartCard Operations: "api/operators/cards.md"
- Models & Types:
- SmartCard Types: "api/models/cards.md"
- Key Types: "api/models/keys.md"
- Other Types: "api/models/other.md"
watch:
- gpyg
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [gpyg]
options:
docstring_style: google
allow_inspection: true
show_bases: true
heading_level: 3
members_order: source
show_root_heading: true
show_root_full_path: false