Skip to content

tabular

Top-level package for kiara_plugin.tabular.

Attributes

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

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

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

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

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

Functions

get_version()

Source code in /opt/hostedtoolcache/Python/3.11.4/x64/lib/python3.11/site-packages/kiara_plugin/tabular/__init__.py
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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):
            pass

        if __version__ is None:
            __version__ = "unknown"

    return __version__