viv/docs/conf.py

24 lines
605 B
Python
Raw Normal View History

project = "Viv"
copyright = "2023, Daylin Morgan"
author = "Daylin Morgan"
2023-12-18 12:27:44 -06:00
extensions = ["myst_parser", "sphinx_copybutton"]
2024-01-03 15:58:44 -06:00
myst_enable_extensions = ["colon_fence", "deflist"]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_extra_path = ["viv.py"]
2023-12-18 12:27:44 -06:00
html_theme = "shibuya"
# html_static_path = ["_static"]
html_logo = "../assets/logo.svg"
2023-12-18 12:27:44 -06:00
2024-01-03 15:58:44 -06:00
html_theme_options = {
"github_url": "https://github.com/daylinmorgan/viv",
"nav_links": [
{"title": "Documentation", "url": "installation"},
{"title": "CLI Reference", "url": "cli"},
],
}