-
Notifications
You must be signed in to change notification settings - Fork 19
/
mkdocs.yml
71 lines (65 loc) · 1.73 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
site_name: deptry
edit_uri: edit/main/docs/
repo_name: fpgmaas/deptry
repo_url: https://github.com/fpgmaas/deptry
site_url: https://deptry.com
site_description: A command line tool to check for unused dependencies in a poetry managed python project.
site_author: Florian Maas
copyright: Maintained by <a href="https://fpgmaas.com">Florian</a>.
nav:
- Home: index.md
- Usage and Configuration: usage.md
- Rules and Violations: rules-violations.md
- Supported dependency managers: supported-dependency-managers.md
- Changelog: CHANGELOG.md
- Contributing: contributing.md
plugins:
- search
theme:
name: material
features:
- content.action.edit
- content.code.copy
- navigation.footer
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: cyan
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: cyan
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to system preferences
icon:
repo: fontawesome/brands/github
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/fpgmaas/deptry
- icon: fontawesome/brands/python
link: https://pypi.org/project/deptry/
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true
- pymdownx.arithmatex:
generic: true
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn