VERSION = (0, 2, 17)


def get_version():
    """Return the version as a string. "O.7"

    This uses a major.minor.tiny to be compatible with semver spec.

    .. note:: This should be improved to be compliant with PEP 386.
    """
    return ".".join([str(i) for i in VERSION])
