diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-01-08 09:01:56 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-01-08 09:01:56 (GMT) |
commit | cbe6356c4260c3f040124fe213d1fd85280bedfe (patch) | |
tree | 050e1025af1fb7c8dfcf2a4490f7a0230048b5ef /Doc/conf.py | |
parent | e95fd0b411f0fb8a1725ed46ace9fd483e9581e4 (diff) | |
download | cpython-cbe6356c4260c3f040124fe213d1fd85280bedfe.zip cpython-cbe6356c4260c3f040124fe213d1fd85280bedfe.tar.gz cpython-cbe6356c4260c3f040124fe213d1fd85280bedfe.tar.bz2 |
Issue20969 - Set the Epub Author and Epub Publisher in Python docs.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 28dd80f..3e656ea 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 # -------------------------------- |