Coverage for sources/librovore/xtnsmgr/__init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-03 21:59 +0000
« prev ^ index » next coverage.py v7.10.6, created at 2025-09-03 21:59 +0000
1# vim: set filetype=python fileencoding=utf-8:
2# -*- coding: utf-8 -*-
4#============================================================================#
5# #
6# Licensed under the Apache License, Version 2.0 (the "License"); #
7# you may not use this file except in compliance with the License. #
8# You may obtain a copy of the License at #
9# #
10# http://www.apache.org/licenses/LICENSE-2.0 #
11# #
12# Unless required by applicable law or agreed to in writing, software #
13# distributed under the License is distributed on an "AS IS" BASIS, #
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
15# See the License for the specific language governing permissions and #
16# limitations under the License. #
17# #
18#============================================================================#
21''' Extension manager with async package installation. '''
24from .installation import (
25 install_package,
26)
27from .importation import (
28 add_package_to_import_path,
29 import_processor_module,
30 get_module_info,
31 list_registered_processors,
32 process_pth_files,
33)
34from .cachemgr import (
35 CacheInfo,
36 calculate_cache_path,
37 calculate_platform_id,
38 cleanup_expired_caches,
39 clear_package_cache,
40 acquire_cache_info,
41 ensure_package,
42 invalidate,
43 save_cache_info,
44)
45from .configuration import (
46 ExtensionArguments,
47 ExtensionConfig,
48 select_intrinsic_extensions,
49 select_active_extensions,
50 extract_extension_arguments,
51 extract_inventory_extensions,
52 extract_structure_extensions,
53 validate_extension,
54)
55from .processors import *