-
Notifications
You must be signed in to change notification settings - Fork 5
/
mkdocs.yml
138 lines (130 loc) · 4.26 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
site_name: CRIPT Python SDK
repo_url: https://github.com/C-Accel-CRIPT/Python-SDK
repo_name: C-Accel-CRIPT/Python-SDK
nav:
- Home: index.md
- Tutorial:
- CRIPT Installation Guide: tutorial/cript_installation_guide.md
- CRIPT API Token: tutorial/how_to_get_api_token.md
- Example Code Walkthrough:
- Synthesis: examples/synthesis.md
- Simulation: examples/simulation.md
- API Client:
- API: api/api.md
- Search Modes: api/search_modes.md
- Paginator: api/paginator.md
- Controlled Vocabulary Categories: api/controlled_vocabulary_categories.md
- Base Nodes:
- BaseNode: nodes/primary_nodes/base_node.md
- UUIDBase: nodes/uuid_base.md
- PrimaryBaseNode: nodes/primary_nodes/primary_base_node.md
- Primary Nodes:
- Collection: nodes/primary_nodes/collection.md
- Computation: nodes/primary_nodes/computation.md
- Computation Process: nodes/primary_nodes/computation_process.md
- Data: nodes/primary_nodes/data.md
- Experiment: nodes/primary_nodes/experiment.md
- Inventory: nodes/primary_nodes/inventory.md
- Material: nodes/primary_nodes/material.md
- Project: nodes/primary_nodes/project.md
- Process: nodes/primary_nodes/process.md
- Reference: nodes/primary_nodes/reference.md
- Software: nodes/primary_nodes/software.md
- Sub-objects:
- Algorithm: nodes/subobjects/algorithm.md
- Citation: nodes/subobjects/citation.md
- Computational Forcefield: nodes/subobjects/computational_forcefield.md
- Condition: nodes/subobjects/condition.md
- Equipment: nodes/subobjects/equipment.md
- Ingredient: nodes/subobjects/ingredient.md
- Parameter: nodes/subobjects/parameter.md
- Property: nodes/subobjects/property.md
- Quantity: nodes/subobjects/quantity.md
- Software Configuration: nodes/subobjects/software_configuration.md
- Supporting Nodes:
- User: nodes/supporting_nodes/user.md
# - Group: nodes/supporting_nodes/group.md
- File: nodes/supporting_nodes/file.md
- Utility Functions: utility_functions.md
- Exceptions:
- API Exceptions: exceptions/api_exceptions.md
- Node Exceptions: exceptions/node_exceptions.md
- FAQ: faq.md
- Internal Wiki Documentation: https://github.com/C-Accel-CRIPT/Python-SDK/wiki
- CRIPT Python SDK Discussions: https://github.com/C-Accel-CRIPT/Python-SDK/discussions
theme:
name: material
# below is the favicon image and documentation logo
logo: ./images/CRIPT_full_logo_colored_transparent.png
favicon: ./images/favicon.ico
icon:
admonition:
alert: octicons/alert-16
features:
- content.code.copy
- navigation.path
- navigation.tracking
- navigation.footer
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: deep purple
toggle:
icon: material/brightness-4
name: Switch to light mode
# This links the CRIPT logo to the CRIPT homepage
extra:
homepage: https://criptapp.org
# social:
# - icon: fontawesome/brands/twitter
# link: https://twitter.com/squidfunk
# name: squidfunk on Twitter
copyright: © 2023 MIT | All Rights Reserved
extra_css:
- extra.css
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src, docs]
options:
show_bases: true
show_source: true
docstring_style: numpy
watch:
- src/
markdown_extensions:
- toc:
baselevel: 2
permalink: True
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg