forked from iterative/datachain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
138 lines (126 loc) · 3.33 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: DataChain
site_url: https://datachain.dvc.ai
site_description: Wrangle unstructured AI data at scale
repo_url: "https://github.com/iterative/datachain"
repo_name: "iterative/datachain"
edit_uri: edit/main/docs/
strict: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
theme:
name: material
logo: assets/datachain.png
favicon: assets/datachain.png
icon:
repo: fontawesome/brands/github
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.path
- navigation.top
- navigation.prune
- navigation.footer
- toc.follow
- content.action.edit
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
- search.highlight
- search.suggest
- navigation.sections
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: lime
toggle:
icon: material/weather-night
name: Switch to system preference
nav:
- Home: index.md
- API reference:
- references/index.md
- references/datachain.md
- references/datatype.md
- references/file.md
- references/udf.md
- references/torch.md
- references/sql.md
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences:
- pymdownx.tabbed:
alternate_style: true
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- tables
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/iterative/datachain
- icon: fontawesome/brands/twitter
link: https://twitter.com/DVCorg
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/dvc-ai
plugins:
- search
- section-index
- mkdocstrings:
handlers:
python:
rendering:
show_submodules: no
options:
docstring_options:
ignore_init_summary: true
docstring_section_style: list
merge_init_into_class: true
separate_signature: true
show_root_full_path: false
show_root_heading: true
show_signature_annotations: true
show_symbol_type_heading: true
signature_crossrefs: true
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://pandas.pydata.org/docs/objects.inv
- https://arrow.apache.org/docs/objects.inv
- https://docs.sqlalchemy.org/objects.inv
- https://docs.pydantic.dev/latest/objects.inv
watch:
- src/datachain