~fgallina/conn-check/configs-dont-mess-with-caches

1
2
3
4
5
6
7
8
9
10
11
12
13
import os


def get_version_string():
    return open(os.path.join(os.path.dirname(__file__),
                'version.txt'), 'r').read().strip()


def get_version():
    return get_version_string().split('.')


__version__ = get_version_string()