From c4587c07935eea8bd7b520da52fd30e082d63a30 Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Mon, 15 Nov 2021 10:08:16 +0100 Subject: [PATCH] Add missing author metadata --- docs/conf.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 0a1eeb33..7d5838b1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -65,7 +65,8 @@ master_doc = "index" # General information about the project. 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 # |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 = { "https://docs.python.org/3": None, }