nextcloud-android/third_party/transifex-client/txclib/__init__.py
2012-07-21 22:10:36 +02:00

19 lines
474 B
Python

# -*- coding: utf-8 -*-
"""
Copyright (C) 2010 by Indifex (www.indifex.com), see AUTHORS.
License: BSD, see LICENSE for details.
For further information visit http://code.indifex.com/transifex-client
"""
VERSION = (0, 9, 0, 'devel')
def get_version():
version = '%s.%s' % (VERSION[0], VERSION[1])
if VERSION[2]:
version = '%s.%s' % (version, VERSION[2])
if VERSION[3] != 'final':
version = '%s %s' % (version, VERSION[3])
return version