From: Senthil Kumaran Date: Fri, 8 Jan 2016 09:01:56 +0000 (-0800) Subject: Issue20969 - Set the Epub Author and Epub Publisher in Python docs. X-Git-Tag: v3.6.0a1~811^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cbe6356c4260c3f040124fe213d1fd85280bedfe;p=thirdparty%2FPython%2Fcpython.git Issue20969 - Set the Epub Author and Epub Publisher in Python docs. --- diff --git a/Doc/conf.py b/Doc/conf.py index 28dd80f8590f..3e656eacd7ae 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -138,6 +138,11 @@ latex_appendices = ['glossary', 'about', 'license', 'copyright'] # 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 # --------------------------------