Issue20969 - Set the Epub Author and Epub Publisher in Python docs.
diff --git a/Doc/conf.py b/Doc/conf.py
index ffead05..2c271e8 100644
--- a/Doc/conf.py
+++ b/Doc/conf.py
@@ -135,6 +135,14 @@
# Get LaTeX to handle Unicode correctly
latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}', 'utf8extra': ''}
+
+# Options for Epub output
+# -----------------------
+
+epub_author = 'Python Documentation Authors'
+epub_publisher = 'Python Software Foundation'
+
+
# Options for the coverage checker
# --------------------------------