Source code for curies.version

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

"""Version information for :mod:`curies`."""

__all__ = [
    "VERSION",
    "get_version",
]

VERSION = "0.7.10-dev"


[docs] def get_version() -> str: """Get the :mod:`curies` version string.""" return VERSION