Added __version__

This commit is contained in:
Konsta Vesterinen
2013-07-03 11:26:13 +03:00
parent c1492dd59a
commit 02ce4711a5
2 changed files with 6 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ import sys, os
# 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('..'))
from sqlalchemy_utils import __version__
# -- General configuration -----------------------------------------------------
@@ -48,9 +49,9 @@ copyright = u'2013, Konsta Vesterinen'
# built documents.
#
# The short X.Y version.
version = '0.1'
version = __version__
# The full version, including alpha/beta/rc tags.
release = '0.1'
release = version
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -20,6 +20,9 @@ from .types import (
)
__version__ = '0.14.3'
__all__ = (
coercion_listener,
sort_query,