Files
invenio-config-iform/invenio_config_tugraz/__init__.py
Christoph Ladurner 5e4fcca0ed release v0.12.3
2024-07-25 23:04:28 +02:00

21 lines
504 B
Python

# -*- coding: utf-8 -*-
#
# Copyright (C) 2020-2024 Graz University of Technology.
#
# invenio-config-tugraz is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
# details.
"""invenio module that adds tugraz configs."""
from .ext import InvenioConfigTugraz
from .utils import get_identity_from_user_by_email
__version__ = "0.12.3"
__all__ = (
"__version__",
"InvenioConfigTugraz",
"get_identity_from_user_by_email",
)