-
Notifications
You must be signed in to change notification settings - Fork 8
/
mkdocs.yml
105 lines (94 loc) · 2.68 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
site_name: "SAFE"
site_description: "Gotta be SAFE: a new framework for molecular design"
site_url: "https://github.com/datamol-io/safe"
repo_url: "https://github.com/datamol-io/safe"
repo_name: "datamol-io/safe"
copyright: Copyright 2023 Valence Labs
remote_branch: "gh-pages"
docs_dir: "docs"
use_directory_urls: false
strict: true
nav:
- Overview: index.md
- Tutorials:
- Getting Started: tutorials/getting-started.ipynb
- Molecular design: tutorials/design-with-safe.ipynb
- How it works: tutorials/how-it-works.ipynb
- Extracting representation (molfeat): tutorials/extracting-representation-molfeat.ipynb
- API:
- SAFE: api/safe.md
- Visualization: api/safe.viz.md
- Model training: api/safe.models.md
- CLI: cli.md
- License: license.md
- Data License: data_license.md
theme:
name: material
features:
- navigation.expand
extra_javascript:
- assets/js/google-analytics.js
markdown_extensions:
- admonition
- markdown_include.include
- pymdownx.emoji
- pymdownx.highlight
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.tasklist
- pymdownx.details
# For `tab_length=2` in the markdown extension
# See https://github.com/mkdocs/mkdocs/issues/545
- mdx_truly_sane_lists
- toc:
permalink: true
watch:
- safe/
plugins:
- search
- mkdocstrings:
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
setup_commands:
- import sys
- import safe
- sys.path.append("docs")
- sys.path.append("safe")
selection:
new_path_syntax: true
rendering:
show_root_heading: false
heading_level: 2
show_if_no_docstring: true
options:
docstring_options:
ignore_init_summary: false
docstring_section_style: list
merge_init_into_class: true
show_root_heading: false
show_root_full_path: false
show_signature_annotations: true
show_symbol_type_heading: true
show_symbol_type_toc: true
signature_crossrefs: true
- mkdocs-jupyter:
execute: False
remove_tag_config:
remove_cell_tags: [remove_cell]
remove_all_outputs_tags: [remove_output]
remove_input_tags: [remove_input]
- mike:
version_selector: true
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/datamol-io
- icon: fontawesome/brands/twitter
link: https://twitter.com/datamol_io
- icon: fontawesome/brands/python
link: https://pypi.org/project/safe-mol/