diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index 8f711a16..208c0cdf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,12 +12,17 @@ # serve to show the default. import sys, os +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 # documentation root, use os.path.abspath to make it absolute, like shown here. sys.path.insert(0, os.path.abspath('..')) +# get version automagically from source tree +from slixmpp.version import __version__ as version +release = ".".join(version.split(".")[0:2]) + # -- General configuration ----------------------------------------------------- # If your documentation needs a minimal Sphinx version, state it here. @@ -41,16 +46,18 @@ master_doc = 'index' # General information about the project. project = u'Slixmpp' -copyright = u'2011, Nathan Fritz, Lance Stout' +year = datetime.datetime.now().year +copyright = u'{}, Nathan Fritz, Lance Stout'.format(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. # +# auto imported from code! # The short X.Y version. -version = '1.1' +# version = '1.4' # The full version, including alpha/beta/rc tags. -release = '1.1' +# release = '1.4.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |