From fd6ae888cf3c1c511edf5d0dae7b765ed099a3a3 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 22 Mar 2026 07:02:45 -0400 Subject: [PATCH] Add GitHub link and banner to docs sidebar Co-Authored-By: Claude Opus 4.6 (1M context) --- docs/conf.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index ba47897..718359c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,7 +10,7 @@ sys.modules["sounddevice"] = MagicMock() project = "PyTheory" copyright = "2026, Kenneth Reitz" author = "Kenneth Reitz" -release = "0.2.0" +release = "0.3.0" extensions = [ "sphinx.ext.autodoc", @@ -34,5 +34,11 @@ templates_path = ["_templates"] exclude_patterns = ["_build"] html_theme = "alabaster" +html_theme_options = { + "github_user": "kennethreitz", + "github_repo": "pytheory", + "github_banner": True, + "description": "Music Theory for Humans", +} html_static_path = ["_static"] html_extra_path = ["CNAME"]