sh_cpl/src/cpl/application/__init__.py

32 lines
843 B
Python
Raw Normal View History

2021-03-04 21:57:30 +01:00
# -*- coding: utf-8 -*-
"""
2021-03-08 20:29:08 +01:00
sh_cpl sh-edraft Common Python library
2021-03-04 21:57:30 +01:00
~~~~~~~~~~~~~~~~~~~
2021-03-08 20:29:08 +01:00
sh-edraft Common Python library
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.application'
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-03-13 15:59:08 +01:00
__version__ = '2021.04.01'
2021-03-04 21:57:30 +01:00
from collections import namedtuple
# imports:
2021-03-08 22:02:16 +01:00
from .application_abc import ApplicationABC
from .application_host import ApplicationHost
from .application_host_abc import ApplicationHostABC
from .application_runtime import ApplicationRuntime
from .application_runtime_abc import ApplicationRuntimeABC
from .startup_abc import StartupABC
2021-03-04 21:57:30 +01:00
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2021-03-13 15:59:08 +01:00
version_info = VersionInfo(major='2021', minor='04', micro='01')