diff options
author | David Robillard <d@drobilla.net> | 2023-09-02 19:00:54 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-21 20:16:18 -0400 |
commit | 7c8682a1b53713b3263034bc8db3cdb5839968b5 (patch) | |
tree | ef495ddf29b53786b57a925bec0a143a0431781b /doc/conf.py.in | |
parent | 1d48d40ac4948b1864ca09e9d0a26fdd71bbee8d (diff) | |
download | sratom-7c8682a1b53713b3263034bc8db3cdb5839968b5.tar.gz sratom-7c8682a1b53713b3263034bc8db3cdb5839968b5.tar.bz2 sratom-7c8682a1b53713b3263034bc8db3cdb5839968b5.zip |
Clean up documentation and remove junk files from install
Diffstat (limited to 'doc/conf.py.in')
-rw-r--r-- | doc/conf.py.in | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/conf.py.in b/doc/conf.py.in index 1dbf9fc..ff34db2 100644 --- a/doc/conf.py.in +++ b/doc/conf.py.in @@ -3,10 +3,12 @@ # Project information -project = "Sratom" -copyright = "2020, David Robillard" +project = "@SRATOM_TITLE@" +copyright = "2023, David Robillard" author = "David Robillard" release = "@SRATOM_VERSION@" +version = "@SRATOM_VERSION@" +desc = "A small library for serializing LV2 atoms" # General configuration @@ -52,7 +54,7 @@ if tags.has("singlehtml"): html_theme_options = { "body_max_width": "48em", "body_min_width": "48em", - "description": "A small library for serializing LV2 atoms", + "description": desc, "globaltoc_collapse": False, "globaltoc_maxdepth": 3, "logo_name": True, @@ -67,7 +69,7 @@ else: html_theme_options = { "body_max_width": "60em", "body_min_width": "40em", - "description": "A small library for serializing LV2 atoms", + "description": desc, "globaltoc_collapse": True, "globaltoc_maxdepth": 1, "logo_name": True, |