-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzensical.toml
More file actions
105 lines (98 loc) · 2.53 KB
/
Copy pathzensical.toml
File metadata and controls
105 lines (98 loc) · 2.53 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[project]
site_name = "bearshape"
site_url = "https://acecchini.github.io/bearshape/"
site_description = "Elegant runtime shape and dtype checking for NumPy, JAX, PyTorch, and CuPy arrays — powered by beartype."
site_author = "acecchini"
copyright = "Copyright © 2025 – 2026 bearshape contributors"
repo_url = "https://github.com/acecchini/bearshape"
repo_name = "acecchini/bearshape"
edit_uri = "edit/main/docs/"
docs_dir = "docs"
site_dir = "site"
extra_css = ["stylesheets/extra.css?v=17"]
extra_javascript = ["assets/js/tesseract.js?v=11"]
nav = [
{ "Home" = "index.md" },
{ "Getting Started" = [
"getting-started/index.md",
"getting-started/installation.md",
"getting-started/quickstart.md",
]},
{ "Features" = [
"features/index.md",
"features/dimensions.md",
"features/static-typing.md",
"features/array-types.md",
"features/like-types.md",
"features/tree-annotations.md",
"features/decorator.md",
"features/claw.md",
]},
{ "API Reference" = [
"api/index.md",
"api/bearshape.md",
"api/numpy.md",
"api/jax.md",
"api/torch.md",
"api/cupy.md",
"api/optree.md",
"api/claw.md",
]},
{ "Examples" = [
"examples/index.md",
]},
]
[project.theme]
variant = "classic"
custom_dir = "docs/overrides"
language = "en"
favicon = "assets/favicon.png"
logo = "assets/logo.svg"
features = [
"navigation.instant",
"navigation.instant.prefetch",
"navigation.instant.progress",
"navigation.tracking",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.sections",
"navigation.path",
"navigation.indexes",
"navigation.top",
"navigation.footer",
"toc.follow",
"content.code.annotate",
"content.code.copy",
"content.code.select",
"content.tabs.link",
"content.tooltips",
"content.footnote.tooltips",
"search.highlight",
"header.autohide",
]
[project.theme.font]
text = "Inter"
code = "JetBrains Mono"
[project.theme.icon]
repo = "fontawesome/brands/github"
edit = "material/pencil"
view = "material/eye"
# Light mode
[[project.theme.palette]]
media = "(prefers-color-scheme: light)"
scheme = "default"
primary = "deep purple"
accent = "deep purple"
toggle.icon = "material/weather-sunny"
toggle.name = "Switch to dark mode"
# Dark mode
[[project.theme.palette]]
media = "(prefers-color-scheme: dark)"
scheme = "slate"
primary = "deep purple"
accent = "deep purple"
toggle.icon = "material/weather-night"
toggle.name = "Switch to light mode"
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/acecchini/bearshape"