|
| 1 | +[project] |
| 2 | +site_name = "{{ project_name }}" |
| 3 | +site_description = "{{ project_description }}" |
| 4 | +site_author = "{{ user_name }}" |
| 5 | +site_url = "{{ documentation_url }}/" |
| 6 | +copyright = "Copyright © {{ copyright_year }} {{ copyright_owner }}" |
| 7 | +repo_url = "{{ repository_url }}" |
| 8 | +repo_name = "{{ repository_path }}" |
| 9 | +edit_uri = "edit/main/docs/" |
| 10 | + |
| 11 | +[project.theme] |
| 12 | +features = [ |
| 13 | + "announce.dismiss", |
| 14 | + "content.action.edit", |
| 15 | + "content.action.view", |
| 16 | + "content.code.annotate", |
| 17 | + "content.code.copy", |
| 18 | + "content.code.select", |
| 19 | + "content.footnote.tooltips", |
| 20 | + "content.tabs.link", |
| 21 | + "content.tooltips", |
| 22 | + "navigation.footer", |
| 23 | + "navigation.indexes", |
| 24 | + "navigation.instant", |
| 25 | + "navigation.instant.prefetch", |
| 26 | + "navigation.path", |
| 27 | + "navigation.sections", |
| 28 | + "navigation.tabs", |
| 29 | + "navigation.tabs.sticky", |
| 30 | + "navigation.top", |
| 31 | + "navigation.tracking", |
| 32 | + "search.highlight", |
| 33 | + "toc.follow", |
| 34 | +] |
| 35 | + |
| 36 | +[[project.theme.palette]] |
| 37 | +scheme = "default" |
| 38 | +toggle.icon = "lucide/sun" |
| 39 | +toggle.name = "Switch to dark mode" |
| 40 | + |
| 41 | +[[project.theme.palette]] |
| 42 | +scheme = "slate" |
| 43 | +toggle.icon = "lucide/moon" |
| 44 | +toggle.name = "Switch to light mode" |
| 45 | + |
| 46 | +[project.theme.font] |
| 47 | +text = "Inter" |
| 48 | +code = "JetBrains Mono" |
| 49 | + |
| 50 | +[[project.extra.social]] |
| 51 | +icon = "fontawesome/brands/github" |
| 52 | +link = "{{ repository_url}}" |
| 53 | + |
| 54 | +[project.markdown_extensions] |
| 55 | +pymdownx.snippets = {} |
| 56 | +pymdownx.highlight = { anchor_linenums = true, pygments_lang_class = true } |
| 57 | +pymdownx.superfences = {} |
| 58 | +pymdownx.tabbed = { alternate_style = true } |
| 59 | + |
| 60 | +[project.plugins.mkdocstrings.handlers.python] |
| 61 | +inventories = [ |
| 62 | + "https://docs.python.org/3/objects.inv", |
| 63 | +] |
| 64 | + |
| 65 | +[project.plugins.mkdocstrings.handlers.python.options] |
| 66 | +parameter_headings = true |
| 67 | +show_root_heading = true |
| 68 | +show_symbol_type_heading = true |
| 69 | +show_symbol_type_toc = true |
| 70 | +type_parameter_headings = true |
| 71 | +inherited_members = true |
| 72 | +members_order = "source" |
| 73 | +summary = true |
| 74 | +docstring_style = "google" |
| 75 | +docstring_options = { ignore_init_summary = true } |
| 76 | +docstring_section_style = "table" |
| 77 | +merge_init_into_class = true |
| 78 | +show_signature_annotations = true |
| 79 | +show_signature_type_parameters = true |
| 80 | +separate_signature = true |
| 81 | +signature_crossrefs = true |
0 commit comments