Add missing author metadata

This commit is contained in:
Hynek Schlawack 2021-11-15 10:08:16 +01:00
parent a76f750d77
commit c4587c0793
1 changed files with 4 additions and 1 deletions

View File

@ -65,7 +65,8 @@ master_doc = "index"
# General information about the project. # General information about the project.
project = "attrs" project = "attrs"
copyright = "2015, Hynek Schlawack" author = "Hynek Schlawack"
copyright = f"2015, {author}"
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
@ -160,6 +161,8 @@ texinfo_documents = [
) )
] ]
epub_description = "Python Clases Without Boilerplate"
intersphinx_mapping = { intersphinx_mapping = {
"https://docs.python.org/3": None, "https://docs.python.org/3": None,
} }