forked from litl/backoff
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzensical.toml
More file actions
69 lines (63 loc) · 2.12 KB
/
Copy pathzensical.toml
File metadata and controls
69 lines (63 loc) · 2.12 KB
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
[project]
site_url = "https://backoff.readthedocs.io/"
site_description = "Python library providing function decorators for configurable backoff and retry"
site_name = "backoff"
repo_url = "https://github.com/python-backoff/backoff"
repo_name = "python-backoff/backoff"
nav = [
{ Home = "index.md" },
{ "Getting Started" = "getting-started.md" },
{ "User Guide" = [
{ "Decorators" = "user-guide/decorators.md" },
{ "Wait Strategies" = "user-guide/wait-strategies.md" },
{ "Configuration" = "user-guide/configuration.md" },
{ "Event Handlers" = "user-guide/event-handlers.md" },
{ "Logging" = "user-guide/logging.md" },
{ "Async Support" = "user-guide/async.md" },
] },
{ "Advanced" = [
{ "Combining Decorators" = "advanced/combining-decorators.md" },
{ "Runtime Configuration" = "advanced/runtime-config.md" },
{ "Custom Strategies" = "advanced/custom-strategies.md" },
] },
{ "Examples" = "examples.md" },
{ "API Reference" = "api/reference.md" },
{ "FAQ" = "faq.md" },
{ "Changelog" = "changelog.md" },
]
[project.markdown_extensions.admonition]
[project.markdown_extensions.pymdownx.highlight]
pygments_lang_class = true
[project.markdown_extensions.pymdownx.inlinehilite]
[project.markdown_extensions.pymdownx.snippets]
[project.markdown_extensions.pymdownx.superfences]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "google"
inherited_members = true
show_source = true
[project.plugins.offline]
enabled = true
[project.theme]
name = "material"
features = [
"content.code.copy",
"content.code.select",
"content.code.annotate",
"navigation.indexes",
"navigation.sections",
"navigation.tabs",
"navigation.top",
"search.highlight",
"search.share",
"search.suggest",
]
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
toggle.icon = "material/brightness-7"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
toggle.icon = "material/brightness-4"
toggle.name = "Switch to light mode"