File tree Expand file tree Collapse file tree 4 files changed +1301
-19
lines changed Expand file tree Collapse file tree 4 files changed +1301
-19
lines changed Original file line number Diff line number Diff line change 1010.vscode
1111.tox /
1212coverage.xml
13+
14+ # mkdocs
15+ site /
Original file line number Diff line number Diff line change 1+
2+ site_name : backoff
3+ repo_url : https://github.com/python-backoff/backoff
4+ repo_name : python-backoff/backoff
5+ theme :
6+ name : material
7+ palette :
8+ - media : " (prefers-color-scheme: light)"
9+ scheme : default
10+ toggle :
11+ icon : material/brightness-7
12+ name : Switch to dark mode
13+ - media : " (prefers-color-scheme: dark)"
14+ scheme : slate
15+ toggle :
16+ icon : material/brightness-4
17+ name : Switch to light mode
18+ features :
19+ - content.code.copy
20+ - content.code.select
21+ - content.code.annotate
22+ - navigation.indexes
23+ - navigation.sections
24+ - navigation.tabs
25+ - navigation.top
26+ - search.highlight
27+ - search.share
28+ - search.suggest
29+ markdown_extensions :
30+ - pymdownx.highlight
31+ - pymdownx.superfences
32+ - pymdownx.inlinehilite
33+ - admonition
34+ plugins :
35+ - search
36+ - mkdocstrings :
37+ handlers :
38+ python :
39+ options :
40+ docstring_style : google
41+ show_root_heading : yes
42+ show_source : yes
43+ nav :
44+ - " index.md"
45+ - " api.md"
Original file line number Diff line number Diff line change @@ -39,10 +39,16 @@ Repository = "https://github.com/python-backoff/backoff"
3939
4040[dependency-groups ]
4141dev = [
42+ { include-group = " docs" },
4243 { include-group = " lint" },
4344 { include-group = " test" },
4445 { include-group = " typing" },
4546]
47+ docs = [
48+ " mkdocs>=1.5.3" ,
49+ " mkdocs-material>=9.2.7" ,
50+ " mkdocstrings[python]>=0.22.0" ,
51+ ]
4652lint = [
4753 " ruff>=0.12.9" ,
4854]
You can’t perform that action at this time.
0 commit comments