Support dynamic documentation versioning using pbr

- Add a version.py file to allow querying of the pbr version for the package
which is pulled from the git tags
- Use this when doing the sphinx docs generation

Change-Id: Ic892b131c9be2cc65a2b468c9cdb2ff23d1d8743
This commit is contained in:
adreznec
2015-08-19 09:09:32 -05:00
committed by Adam Reznechek
parent c4cfffcc84
commit 95b3be83b9
2 changed files with 20 additions and 2 deletions

View File

@@ -53,10 +53,11 @@ copyright = u'2015, IBM'
# |version| and |release|, also used in various other places throughout the
# built documents.
#
import ceilometer_powervm.version
# The short X.Y version.
version = '0.1.0'
version = ceilometer_powervm.version.version_info.version_string()
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = ceilometer_powervm.version.version_info.release_string()
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.