diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2016-01-08 09:05:57 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2016-01-08 09:05:57 (GMT) |
commit | ee98860e5f77d0b4a1cc532827ccd5de6cb317d0 (patch) | |
tree | e29eb1a8c31ff7bb0b3170d0ef6c48d9c72538e6 /Doc | |
parent | c6fa90c7caa8b75794c7036a2aa6329612314b7e (diff) | |
download | cpython-ee98860e5f77d0b4a1cc532827ccd5de6cb317d0.zip cpython-ee98860e5f77d0b4a1cc532827ccd5de6cb317d0.tar.gz cpython-ee98860e5f77d0b4a1cc532827ccd5de6cb317d0.tar.bz2 |
Issue20969 - Set the Epub Author and Epub Publisher in Python docs.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/conf.py | 8 |
1 files changed, 8 insertions, 0 deletions
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 @@ 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 # -------------------------------- |