summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-04-16 21:38:02 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2023-04-16 22:36:26 +0200
commitbd23504ea16686e23dff3af7934103cc7fb98bc8 (patch)
tree0d9ea6635dd6ba949db8fbf1e1fff18a11d86c56 /doc
parenta4a610490836e79babc0675f8f4763497e85b5d3 (diff)
downloadastroid-git-bd23504ea16686e23dff3af7934103cc7fb98bc8.tar.gz
[doc] Create a variable for the contributors description
Diffstat (limited to 'doc')
-rw-r--r--doc/conf.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 8c5a03af..d9e42545 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -55,7 +55,8 @@ master_doc = "index"
# General information about the project.
project = "Astroid"
current_year = datetime.utcnow().year
-copyright = f"2003-{current_year}, Logilab, PyCQA and contributors"
+contributors = "Logilab, and astroid contributors"
+copyright = f"2003-{current_year}, {contributors}"
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -202,7 +203,7 @@ latex_documents = [
"index",
"Astroid.tex",
"Astroid Documentation",
- "Logilab, PyCQA and contributors",
+ contributors,
"manual",
),
]
@@ -240,7 +241,7 @@ man_pages = [
"index",
"astroid",
"Astroid Documentation",
- ["Logilab, PyCQA and contributors"],
+ [contributors],
1,
)
]