-
Notifications
You must be signed in to change notification settings - Fork 51
/
mkdocs.yml
118 lines (104 loc) · 3.3 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
site_name: "datamol"
site_description: "A python library to work with molecules. Built on top of RDKit."
repo_url: "https://github.com/datamol-io/datamol"
repo_name: "datamol-io/datamol"
copyright: Copyright 2020 - 2023 datamol.io
site_url: ""
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: usage.md
- Tutorials:
- The Basics: tutorials/The_Basics.ipynb
- Preprocessing: tutorials/Preprocessing.ipynb
- Descriptors: tutorials/Descriptors.ipynb
- Chemical Reactions: tutorials/Reactions.ipynb
- Scaffolds: tutorials/Scaffolds.ipynb
- Aligning: tutorials/Aligning.ipynb
- Fuzzy_Scaffolds: tutorials/Fuzzy_Scaffolds.ipynb
- Clustering: tutorials/Clustering.ipynb
- Fragment: tutorials/Fragment.ipynb
- Conformers: tutorials/Conformers.ipynb
- Visualization: tutorials/Visualization.ipynb
- Datamol Filesystem Module: tutorials/Filesystem.ipynb
- API:
- datamol.align: api/datamol.align.md
- datamol.cluster: api/datamol.cluster.md
- datamol.conformers: api/datamol.conformers.md
- datamol.convert: api/datamol.convert.md
- datamol.data: api/datamol.data.md
- datamol.descriptors: api/datamol.descriptors.md
- datamol.fp: api/datamol.fp.md
- datamol.fragment: api/datamol.fragment.md
- datamol.graph: api/datamol.graph.md
- datamol.io: api/datamol.io.md
- datamol.isomers: api/datamol.isomers.md
- datamol.log: api/datamol.log.md
- datamol.molar: api/datamol.molar.md
- datamol.mol: api/datamol.mol.md
- datamol.reactions: api/datamol.reactions.md
- datamol.scaffold: api/datamol.scaffold.md
- datamol.similarity: api/datamol.similarity.md
- datamol.utils: api/datamol.utils.md
- datamol.utils.fs: api/datamol.utils.fs.md
- datamol.viz: api/datamol.viz.md
- Contribute: contribute.md
- License: license.md
theme:
name: material
# NOTE(hadim): to customize the material primary and secondary
# color check `docs/assets/css/datamol-custom.css`.
features:
- navigation.tabs
- navigation.expand
favicon: images/logo-black.png
logo: images/logo.svg
extra_css:
- assets/css/custom.css
- assets/css/custom-datamol.css
- assets/css/tweak-width.css
extra_javascript:
- assets/js/google-analytics.js
markdown_extensions:
- admonition
- markdown_include.include
- pymdownx.emoji
- 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
- toc:
permalink: true
toc_depth: 4
watch:
- datamol/
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append("docs")
- sys.path.append("datamol")
options:
new_path_syntax: true
show_root_heading: false
heading_level: 3
show_root_full_path: false
- mkdocs-jupyter:
execute: false
# kernel_name: python3
- mike:
version_selector: true
extra:
version:
# Multi versioning provider for mkdocs-material (used for the JS selector)
provider: mike