File: mkdocs.yml

package info (click to toggle)
superqt 0.7.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,296 kB
  • sloc: python: 9,065; makefile: 16; sh: 12
file content (56 lines) | stat: -rw-r--r-- 1,270 bytes parent folder | download | duplicates (2)
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
site_name: superqt
site_url: https://github.com/pyapp-kit/superqt
site_description: >-
  missing widgets and components for PyQt/PySide
# Repository
repo_name: pyapp-kit/superqt
repo_url: https://github.com/pyapp-kit/superqt

# Copyright
copyright: Copyright © 2021 - 2022

watch:
  - src

theme:
  name: material
  features:
    - navigation.instant
    - navigation.indexes
    - navigation.expand
    # - navigation.tracking
    # - navigation.tabs
    - search.highlight
    - search.suggest
    - content.code.copy

markdown_extensions:
  - admonition
  - pymdownx.details
  - pymdownx.superfences
  - tables
  - attr_list
  - md_in_html
  - pymdownx.emoji:
      emoji_index: !!python/name:material.extensions.emoji.twemoji
      emoji_generator: !!python/name:material.extensions.emoji.to_svg
  - toc:
      permalink: "#"


plugins:
  - search
  - autorefs
  - macros:
      module_name: docs/_macros
  - mkdocstrings:
      handlers:
        python:
          import:
            - https://docs.python.org/3/objects.inv
            - https://cmap-docs.readthedocs.io/en/latest/objects.inv
          options:
              show_source: false
              docstring_style: numpy
              show_root_toc_entry: True
              show_root_heading: True