summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-11-05 12:24:21 +1100
committerDamien George <damien@micropython.org>2024-11-19 11:39:39 +1100
commitc1b8e65c8e216ce2e90933aef6772de46ad54407 (patch)
treee318d510ea02a9795c62635a730a8f664a91a5eb /docs/conf.py
parentc5d74fe46876767cc43d7d23d949d0f7c3dcd6bd (diff)
docs: Change copyright line to mention "authors and contributors".
The docs have been authored by many people now. Instead of singling out individuals in the copyright line, prefer to mention all "MicroPython authors and contributors". Individual contributions can still be discovered via the git history. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'docs/conf.py')
-rwxr-xr-xdocs/conf.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 32cc2be10..e5c6ba980 100755
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -36,6 +36,9 @@ html_context = {
"is_release": micropy_version != "latest",
}
+# Authors used in various parts of the documentation.
+micropy_authors = "MicroPython authors and contributors"
+
# -- General configuration ------------------------------------------------
@@ -68,7 +71,7 @@ master_doc = "index"
# General information about the project.
project = "MicroPython"
-copyright = "- The MicroPython Documentation is Copyright © 2014-2024, Damien P. George, Paul Sokolovsky, and contributors"
+copyright = "- The MicroPython Documentation is Copyright © 2014-2024, " + micropy_authors
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -244,7 +247,7 @@ latex_documents = [
master_doc,
"MicroPython.tex",
"MicroPython Documentation",
- "Damien P. George, Paul Sokolovsky, and contributors",
+ micropy_authors,
"manual",
),
]
@@ -281,7 +284,7 @@ man_pages = [
"index",
"micropython",
"MicroPython Documentation",
- ["Damien P. George, Paul Sokolovsky, and contributors"],
+ [micropy_authors],
1,
),
]
@@ -300,7 +303,7 @@ texinfo_documents = [
master_doc,
"MicroPython",
"MicroPython Documentation",
- "Damien P. George, Paul Sokolovsky, and contributors",
+ micropy_authors,
"MicroPython",
"One line description of project.",
"Miscellaneous",