sh_cpl/src/cpl_cli/configuration/__init__.py

34 lines
1.0 KiB
Python
Raw Normal View History

2021-03-04 21:57:30 +01:00
# -*- coding: utf-8 -*-
"""
2021-04-07 19:19:20 +02:00
sh_cpl-cli sh-edraft Common Python library CLI
2021-03-04 21:57:30 +01:00
~~~~~~~~~~~~~~~~~~~
2021-04-07 19:19:20 +02:00
sh-edraft Common Python library Command Line Interface
2021-03-04 21:57:30 +01:00
2021-03-08 20:40:54 +01:00
:copyright: (c) 2020 - 2021 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
"""
2021-03-08 20:32:09 +01:00
__title__ = 'cpl_cli.configuration'
2021-03-04 21:57:30 +01:00
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
2021-03-08 20:40:54 +01:00
__copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
2021-08-05 13:37:40 +02:00
__version__ = '2021.10.5'
2021-03-04 21:57:30 +01:00
from collections import namedtuple
# imports:
2021-03-12 16:10:43 +01:00
from .build_settings import BuildSettings
2021-03-13 22:53:28 +01:00
from .build_settings_name_enum import BuildSettingsNameEnum
2021-03-12 16:10:43 +01:00
from .project_settings import ProjectSettings
2021-03-13 22:53:28 +01:00
from .project_settings_name_enum import ProjectSettingsNameEnum
2021-03-12 16:10:43 +01:00
from .version_settings import VersionSettings
from .version_settings_name_enum import VersionSettingsNameEnum
from .workspace_settings import WorkspaceSettings
from .workspace_settings_name_enum import WorkspaceSettingsNameEnum
2021-03-04 21:57:30 +01:00
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2021-08-05 13:37:40 +02:00
version_info = VersionInfo(major='2021', minor='10', micro='5')