summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
)
]