# 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('.'))
+sys.path.insert(0, os.path.abspath(os.path.join('..', '..')))
# -- General configuration -----------------------------------------------------
# |version| and |release|, also used in various other places throughout the
# built documents.
#
-# The short X.Y version.
-version = '0.3.1'
-# The full version, including alpha/beta/rc tags.
-release = '0.3.1.dev'
+try:
+ from mediagoblin._version import __version__
+ # The short X.Y version.
+ version = '.'.join(__version__.split('.')[0:2])
+ # The full version, including alpha/beta/rc tags.
+ release = __version__
+except ImportError:
+ version = 'unknown'
+ release = 'unknown'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.