X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=docs%2Fconf.py;h=1b5d154bd5e0448f22506668ab3a0cfbf81d8044;hb=d212b3e1a9bdcff834f2880040b5963a5da109a1;hp=fad69bda1e756c877b259a2505fa7649e83d36d9;hpb=d9b783574eec3862573e84a2f2ec7fe0e8cc0ef5;p=ppu.git diff --git a/docs/conf.py b/docs/conf.py index fad69bd..1b5d154 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,8 +16,9 @@ # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # -# import os -# import sys +from datetime import date +import os +import sys # sys.path.insert(0, os.path.abspath('.')) @@ -46,17 +47,19 @@ master_doc = 'index' # General information about the project. project = 'Portable Python Utilities' -copyright = '2017, Oleg Broytman' +copyright = u'2017-%d, Oleg Broytman' % date.today().year author = 'Oleg Broytman' # 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. # +sys.path.insert(0, os.path.abspath('..')) +from ppu.__version__ import __version__ # The short X.Y version. -version = '0.1' +version = '.'.join(__version__.split('.')[:2]) # The full version, including alpha/beta/rc tags. -release = '0.1.0' +release = __version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.