X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=doc%2Fsource%2Fconf.py;h=17572a26da4ef41b005726f090b89bc2dca4900d;hp=1690dbc46f94da2dfe37116c17a729b3eaa9f315;hb=eddd57cd87b8e404daa2d4e05cf9e936fd090309;hpb=abcc08f7735ce51e92670a9921c2a9aba370938b diff --git a/doc/source/conf.py b/doc/source/conf.py index 1690dbc..17572a2 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,41 +1,37 @@ -# Copyright (c) 2018 Jeremy Stanley . Permission -# to use, copy, modify, and distribute this software is granted under -# terms provided in the LICENSE file distributed with this software. +# Copyright (c) 2018 mudpy authors. Permission to use, copy, +# modify, and distribute this software is granted under terms +# provided in the LICENSE file distributed with this software. import os import sys sys.path.insert(0, os.path.abspath('../..')) -extensions = ['sphinx.ext.autodoc'] -source_suffix = '.rst' -master_doc = 'index' + project = 'mudpy' -copyright = '2004-2018, Jeremy Stanley ' + add_function_parentheses = True add_module_names = True -pygments_style = 'sphinx' -html_title = 'mudpy' +copyright = '2004-2018, Jeremy Stanley ' +extensions = ['sphinx.ext.autodoc'] html_favicon = '_static/logo.svg' html_logo = '_static/logo.svg' -html_theme_options = { - 'description': 'The mudpy MUD server engine.', - 'fixed_sidebar': True, - 'logo_name': True, - 'logo_text_align': 'center', -} -html_sidebars = { - '**': [ +html_sidebars = {'**': [ 'about.html', + 'donate.html', 'navigation.html', 'relations.html', 'searchbox.html', - 'donate.html', - ] +]} +html_theme_options = { + 'description': 'The mudpy MUD server engine.', + 'fixed_sidebar': True, + 'logo_name': True, + 'logo_text_align': 'center', } +html_title = 'mudpy' htmlhelp_basename = '%sdoc' % project -latex_documents = [ - ('index', - '%s.tex' % project, - u'%s' % project, - u'Jeremy Stanley', 'manual'), -] +latex_documents = [( + 'index', '%s.tex' % project, '%s' % project, 'Jeremy Stanley', 'manual')] +master_doc = 'index' +pygments_style = 'sphinx' +source_suffix = '.rst'