X-Git-Url: https://git.kaliko.me/?a=blobdiff_plain;f=doc%2Fsource%2Fconf.py;h=7102970540f2f72a96d73bc4df3f0e717041f0aa;hb=6288b079e5de8e9ee5482e8009111b6ba3cba93a;hp=ab853056a2a561cbe5225ff1b1ca457123a84df8;hpb=46cee49bf4453ae36f768a9f53421a5b85ad89a0;p=mpd-sima.git diff --git a/doc/source/conf.py b/doc/source/conf.py index ab85305..7102970 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -15,7 +15,6 @@ import sys import os -import shlex # If extensions (or modules to document with autodoc) are in another directory, @@ -23,7 +22,7 @@ import shlex # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.insert(0, os.path.abspath('.')) sys.path.insert(0, os.path.abspath('../../')) -from sima.info import __version__ +from sima.info import __version__, __author__ # -- General configuration ------------------------------------------------ @@ -36,6 +35,7 @@ from sima.info import __version__ extensions = [ 'sphinx.ext.autodoc', 'sphinx.ext.viewcode', + 'sphinx.ext.intersphinx', ] # Add any paths that contain templates here, relative to this directory. @@ -54,8 +54,9 @@ master_doc = 'index' # General information about the project. project = 'MPD_sima' -copyright = '2015, kaliko' -author = 'kaliko' +from datetime import datetime +copyright = '2009-{}, {}'.format(datetime.now().year, __author__) +author = __author__ # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -115,13 +116,16 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'alabaster' html_theme = 'classic' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -#html_theme_options = {} +html_theme_options = { + "externalrefs": True, + "sidebarwidth": "300px", + "bgcolor": "#dfdfdf", +} # Add any paths that contain custom themes here, relative to this directory. #html_theme_path = [] @@ -290,3 +294,5 @@ texinfo_documents = [ # If true, do not generate a @detailmenu in the "Top" node's menu. #texinfo_no_detailmenu = False + +intersphinx_mapping = {'https://docs.python.org/': None}