From 31b2d39678f37b245c18963340e3b396d019a2b8 Mon Sep 17 00:00:00 2001 From: Derrick Gilland Date: Sun, 12 Feb 2017 22:46:50 -0500 Subject: [PATCH] Simplify docs/conf.py. --- docs/conf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 6239525..50fdb06 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,6 +58,7 @@ # General information about the project. project = project_module.__package__ +project_description = project_module.__description__ author = project_module.__author__ copyright = u'2014, ' + author @@ -269,8 +270,7 @@ def setup(app): # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - (master_doc, project_module.__package__, project + ' Documentation', - [author], 1) + (master_doc, project, project + ' Documentation', [author], 1) ] # If true, show URL addresses after external links. @@ -283,8 +283,8 @@ def setup(app): # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, project_module.__package__, project + ' Documentation', - author, project_module.__package__, project_module.__description__, + (master_doc, project, project + ' Documentation', + author, project, project_description, 'Miscellaneous'), ]