-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathzensical.toml
More file actions
34 lines (29 loc) · 830 Bytes
/
zensical.toml
File metadata and controls
34 lines (29 loc) · 830 Bytes
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
[project]
site_name = "python-minimal-boilerplate"
site_description = "Modern minimal boilerplate for a Python project"
site_author = "Your Name"
copyright = "Copyright © 2026 The authors"
[project.theme]
language = "en"
features = [
"content.code.copy",
"navigation.footer",
"navigation.instant",
"navigation.top",
"search.highlight",
]
[project.plugins.mkdocstrings.handlers.python]
inventories = ["https://docs.python.org/3/objects.inv"]
paths = ["src"]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "google"
inherited_members = true
show_source = false
[[project.theme.palette]]
scheme = "default"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"