diff --git a/docs/source/conf.py b/docs/source/conf.py index 7cb074b..a3e27db 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,6 +28,7 @@ import sys import os +from datetime import datetime # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the @@ -61,16 +62,17 @@ master_doc = 'index' # General information about the project. project = u'Cartographer' -copyright = u'2016 The Cartographer Authors' +copyright = u'{year} The Cartographer Authors'.format(year=datetime.now().year) # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # + # The short X.Y version. -version = '1.0.0' +#version = '' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +#release = '' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.