Drop deprecation filters for pip and yamllint
[mudpy.git] / doc / source / conf.py
index 17572a2..e32f00d 100755 (executable)
@@ -1,7 +1,8 @@
-# Copyright (c) 2018 mudpy authors. Permission to use, copy,
+# Copyright (c) 2018-2021 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 collections
 import os
 import sys
 
@@ -11,7 +12,7 @@ project = 'mudpy'
 
 add_function_parentheses = True
 add_module_names = True
-copyright = '2004-2018, Jeremy Stanley <fungi@yuggoth.org>'
+copyright = '2004-2021, mudpy authors'
 extensions = ['sphinx.ext.autodoc']
 html_favicon = '_static/logo.svg'
 html_logo = '_static/logo.svg'
@@ -24,6 +25,12 @@ html_sidebars = {'**': [
 ]}
 html_theme_options = {
     'description': 'The mudpy MUD server engine.',
+    'extra_nav_links': collections.OrderedDict((
+        ('Browse Source', 'https://mudpy.org/code/mudpy/'),
+        ('Bug Reporting', 'https://mudpy.org/bugs/mudpy/'),
+        ('Git Clone URL', 'https://mudpy.org/code/mudpy/'),
+        ('Release Files', 'https://mudpy.org/dist/mudpy/'),
+    )),
     'fixed_sidebar': True,
     'logo_name': True,
     'logo_text_align': 'center',
@@ -32,6 +39,5 @@ html_title = 'mudpy'
 htmlhelp_basename = '%sdoc' % project
 latex_documents = [(
     'index', '%s.tex' % project, '%s' % project, 'Jeremy Stanley', 'manual')]
-master_doc = 'index'
 pygments_style = 'sphinx'
 source_suffix = '.rst'