-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
70 lines (68 loc) · 1.61 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
site_name: Alchemical Queues
repo_url: https://github.com/thijsmie/alchemical_queues
repo_name: thijsmie/alchemical_queues
nav:
- Introduction:
- "index.md"
- Usage:
- "usage/installation.md"
- "usage/tutorial.md"
- "usage/flask_example.md"
- "usage/advanced.md"
- Development:
- "development/contributing.md"
- "development/postgres.md"
- API:
- Core:
- "api/core/AlchemicalQueues.md"
- "api/core/AlchemicalQueue.md"
- "api/core/AlchemicalEntry.md"
- "api/core/AlchemicalResponse.md"
- Tasks:
- task: "api/tasks/task.md"
- "api/tasks/Worker.md"
- "api/tasks/Task.md"
- "api/tasks/QueuedTask.md"
- "api/tasks/TaskInfo.md"
- "api/tasks/TaskException.md"
theme:
name: material
custom_dir: docs/theme
features:
- navigation.tabs
- navigation.top
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
extra_css:
- stylesheets/extra.css
extra:
version:
provider: mike
plugins:
- macros:
include_dir: .
- mike
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
import:
- https://docs.python.org/3/objects.inv
options:
docstring_style: google
docstring_options:
ignore_init_summary: no
separate_signature: no
show_source: yes
show_root_full_path: no
members_order: source
filters:
- "!^_"
- "^__init__$"
- "^__getitem__$"
- "!^can_replace$"
copyright: Copyright © 2022 Thijs Miedema