-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconf.py
More file actions
20 lines (16 loc) · 438 Bytes
/
conf.py
File metadata and controls
20 lines (16 loc) · 438 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from datetime import date
project = "git2cpp"
author = "QuantStack"
copyright = f"2025-{date.today().year}"
extensions = [
"myst_parser",
]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_static_path = []
html_theme = "sphinx_book_theme"
html_theme_options = {
"github_url": "https://github.com/QuantStack/git2cpp",
"home_page_in_toc": True,
"show_navbar_depth": 2,
}
html_title = "git2cpp documentation"