Skip to content

html

Top-level package for kiara_plugin.html.

Attributes

KIARA_METADATA = {'authors': [{'name': __author__, 'email': __email__}], 'description': 'Kiara modules for: html', 'references': {'source_repo': {'desc': 'The module package git repository.', 'url': 'https://github.com/DHARPA-Project/kiara_plugin.html'}, 'documentation': {'desc': 'The url for the module package documentation.', 'url': 'https://DHARPA-Project.github.io/kiara_plugin.html/'}}, 'tags': ['html'], 'labels': {'package': 'kiara_plugin.html'}} module-attribute

find_modules: KiaraEntryPointItem = (find_kiara_modules_under, 'kiara_plugin.html.modules') module-attribute

find_model_classes: KiaraEntryPointItem = (find_kiara_model_classes_under, 'kiara_plugin.html.models') module-attribute

find_data_types: KiaraEntryPointItem = (find_data_types_under, 'kiara_plugin.html.data_types') module-attribute

find_pipelines: KiaraEntryPointItem = (find_pipeline_base_path_for_module, 'kiara_plugin.html.pipelines', KIARA_METADATA) module-attribute

find_renderer_classes: KiaraEntryPointItem = (find_kiara_renderers_under, 'kiara_plugin.html.renderers') module-attribute

Functions

get_version()

Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/html/__init__.py
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
def get_version():
    from pkg_resources import DistributionNotFound, get_distribution

    try:
        # Change here if project is renamed and does not equal the package name
        dist_name = __name__
        __version__ = get_distribution(dist_name).version
    except DistributionNotFound:

        try:
            version_file = os.path.join(os.path.dirname(__file__), "version.txt")

            if os.path.exists(version_file):
                with open(version_file, encoding="utf-8") as vf:
                    __version__ = vf.read()
            else:
                __version__ = "unknown"

        except Exception as e:
            from kiara.utils import log_exception

            log_exception(e)

        if __version__ is None:
            __version__ = "unknown"

    return __version__