# -*- coding: utf-8 -*-

from typing import Tuple

VERSION: Tuple[int, int, int] = (0, 8, 3)

__version__: str = ".".join(map(str, VERSION))
