-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yml
158 lines (147 loc) · 4.5 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
site_name: "OpenQDC"
site_description: "Harness the power of quantum chemistry in one line of code."
repo_url: "https://github.com/valence-labs/openQDC"
repo_name: "openQDC"
copyright: Copyright 2024 Valence Labs
site_url: "https://github.com/valence-labs/openQDC"
remote_branch: "gh-pages"
use_directory_urls: false
docs_dir: "docs"
# Fail on warnings to detect issues with types and docstring
strict: true
nav:
- Overview: index.md
- Usage:
- Base usage : usage.md
- CLI: cli.md
- Available Datasets: datasets.md
- QM methods: normalization_e0s.md
- Data structure: data_storage.md
- Tutorials:
- Really hard example: tutorials/usage.ipynb
- API:
- QM methods: API/methods.md
- Normalization regressor: API/regressor.md
- Main classes:
- BaseDataset: API/basedataset.md
- Available Properties: API/properties.md
- e0 Dispatcher: API/e0_dispatcher.md
- Statistics: API/statistics.md
- Format loading: API/formats.md
- Datasets:
- Potential Energy:
- 3BPA: API/datasets/3bpa.md
- Alchemy : API/datasets/alchemy.md
- ANI : API/datasets/ani.md
- Spice : API/datasets/spice.md
- MaceOFF: API/datasets/maceoff.md
- GEOM : API/datasets/geom.md
- Qmugs : API/datasets/qmugs.md
- ISO_17 : API/datasets/iso_17.md
- Comp6 : API/datasets/comp6.md
- GDML : API/datasets/gdml.md
- Molecule3D : API/datasets/molecule3d.md
- Orbnet Denali : API/datasets/orbnet_denali.md
- SN2 RXN : API/datasets/sn2_rxn.md
- QM7X : API/datasets/qm7x.md
- QM1B : API/datasets/qm1b.md
- NablaDFT : API/datasets/nabladft.md
- Solvated Peptides : API/datasets/solvated_peptides.md
- Waterclusters3_30 : API/datasets/waterclusters3_30.md
- SCAN Waterclusters : API/datasets/waterclusters.md
- TMQM : API/datasets/tmqm.md
- PCQM : API/datasets/pcqm.md
- RevMD17 : API/datasets/revmd17.md
- MD22 : API/datasets/md22.md
- Transition1X : API/datasets/transition1x.md
- MultixcQM9 : API/datasets/multixcqm9.md
- QMX : API/datasets/qmx.md
- Protein Fragments : API/datasets/proteinfragments.md
- VQM24 : API/datasets/vqm24.md
- Interaction Energy:
- DES : API/datasets/des.md
- L7 : API/datasets/l7.md
- X40 : API/datasets/x40.md
- Metcalf : API/datasets/metcalf.md
- Splinter : API/datasets/splinter.md
- Units: API/units.md
- Utils: API/utils.md
- Contribute:
- Mantaining: contribute.md
- Add a dataset: dataset_upload.md
- License: licensing.md
theme:
name: material
#custom_dir: docs/_overrides
features:
- navigation.tabs
#- navigation.expand
#favicon: assets/qdc_logo.png
logo: assets/qdc_logo.png
extra_css:
- css/custom.css
- css/custom-openqdc.css
extra_javascript:
- javascripts/config.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
#- https://unpkg.com/[email protected]/dist/mermaid.min.js
markdown_extensions:
- admonition
- markdown_include.include
- pymdownx.emoji
- pymdownx.highlight
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist
# For `tab_length=2` in the markdown extension
# See https://github.com/mkdocs/mkdocs/issues/545
- mdx_truly_sane_lists
- mkdocs-click
- attr_list
- md_in_html
- toc:
permalink: true
watch:
- openqdc/
plugins:
- search
- mkdocstrings:
#watch:
# - openqdc/
handlers:
python:
setup_commands:
- import sys
- sys.path.append("docs")
- sys.path.append("openqdc")
selection:
new_path_syntax: yes
rendering:
show_root_heading: yes
heading_level: 3
show_if_no_docstring: false
- mkdocs-jupyter:
execute: False
# kernel_name: python3
extra:
version:
provider: mike
analytics:
provider: google
property: G-3ESBDCXFTZ
# Widget at the bottom of every page to collect information about the user experience
# The data is collected in Google Analytics
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback!