forked from pixeltable/pixeltable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
63 lines (57 loc) · 1.92 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
site_name: Pixeltable API
site_author: Pixeltable, Inc.
copyright: |
© 2022 - 2024 <a href="https://github.com/pixeltable" target="_blank" rel="noopener">Pixeltable, Inc.</a> All rights reserved.
docs_dir: docs/release
site_dir: site
repo_url: https://github.com/pixeltable/pixeltable
repo_name: pixeltable/pixeltable
theme:
name: material
custom_dir: docs/overrides
nav:
- Home: index.md
- 'API Cheat Sheet': api-cheat-sheet.md
- 'API Reference':
- pixeltable: api/pixeltable.md
- pixeltable.datatransfer:
- Remote: api/datatransfer/remote.md
- LabelStudioProject: api/datatransfer/label-studio-project.md
- pixeltable.io: api/io.md
- pixeltable.iterators:
- ComponentIterator: api/iterators/component-iterator.md
- DocumentSplitter: api/iterators/document-splitter.md
- FrameIterator: api/iterators/frame-iterator.md
- DataFrame: api/data-frame.md
- InsertableTable: api/insertable-table.md
- Table: api/table.md
- View: api/view.md
- Pixeltable Functions:
- Huggingface: api/functions/huggingface.md
plugins:
- search
- autorefs
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [.]
options:
annotations_path: brief
members_order: alphabetical
line_length: 80
docstring_options:
ignore_init_summary: true
merge_init_into_class: true
docstring_style: google
docstring_section_style: list
show_docstring_description: true
show_source: false
show_root_heading: true
show_bases: false
show_signature_annotations: true
show_signature_crossrefs: true
show_symbol_type_heading: true
show_symbol_type_toc: true
separate_signature: true
signature_crossrefs: true