sh_cpl/src/cpl_core/configuration/__init__.py

39 lines
1.1 KiB
Python
Raw Normal View History

2021-03-04 21:57:30 +01:00
# -*- coding: utf-8 -*-
"""
2023-02-20 15:55:20 +01:00
cpl-core CPL core
2021-03-04 21:57:30 +01:00
~~~~~~~~~~~~~~~~~~~
2023-02-20 15:55:20 +01:00
CPL core package
2021-03-04 21:57:30 +01:00
2024-01-13 14:26:36 +01:00
:copyright: (c) 2020 - 2024 sh-edraft.de
2021-03-08 20:29:54 +01:00
:license: MIT, see LICENSE for more details.
2021-03-04 21:57:30 +01:00
"""
2024-01-13 14:26:36 +01:00
__title__ = "cpl_core.configuration"
__author__ = "Sven Heidemann"
__license__ = "MIT"
__copyright__ = "Copyright (c) 2020 - 2024 sh-edraft.de"
__version__ = "2023.10.2"
2021-03-04 21:57:30 +01:00
from collections import namedtuple
2022-07-10 18:08:44 +02:00
2021-03-04 21:57:30 +01:00
# imports:
2022-05-19 08:25:32 +02:00
from .argument_abc import ArgumentABC
from .argument_builder import ArgumentBuilder
from .argument_executable_abc import ArgumentExecutableABC
from .argument_type_enum import ArgumentTypeEnum
2021-03-08 22:02:16 +01:00
from .configuration import Configuration
from .configuration_abc import ConfigurationABC
from .configuration_model_abc import ConfigurationModelABC
2021-03-12 15:58:30 +01:00
from .configuration_variable_name_enum import ConfigurationVariableNameEnum
2022-05-19 08:25:32 +02:00
from .executable_argument import ExecutableArgument
from .flag_argument import FlagArgument
2022-05-20 10:35:47 +02:00
from .validator_abc import ValidatorABC
2022-05-19 08:25:32 +02:00
from .variable_argument import VariableArgument
2021-03-04 21:57:30 +01:00
2024-01-13 14:26:36 +01:00
VersionInfo = namedtuple("VersionInfo", "major minor micro")
version_info = VersionInfo(major="2023", minor="10", micro="2")