]> kaliko git repositories - mpd-sima.git/blobdiff - doc/source/conf.py
doc: Fixed missing namespace
[mpd-sima.git] / doc / source / conf.py
index 0fb2bdd50058f8bd54a8330ff50f10da6756d861..384585515da4f5c61fa82a1505aaf8c8f0d29c53 100644 (file)
@@ -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-2017, 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
@@ -291,3 +292,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}