+
+def get_version():
+ basedir = os.path.dirname(__file__)
+ with open(os.path.join(basedir, 'ssify/version.py')) as f:
+ variables = {}
+ exec(f.read(), variables)
+ return variables.get('VERSION')
+ raise RuntimeError('No version info found.')
+
+