sh_cpl/src/cpl_cli/__init__.py

32 lines
708 B
Python
Raw Normal View History

2021-03-08 22:14:37 +01:00
# -*- coding: utf-8 -*-
"""
2022-04-30 16:33:30 +02:00
cpl-cli sh-edraft Common Python library CLI
2021-03-08 22:14:37 +01:00
~~~~~~~~~~~~~~~~~~~
2021-04-07 19:19:20 +02:00
sh-edraft Common Python library Command Line Interface
2021-03-08 22:14:37 +01:00
2022-04-30 16:33:30 +02:00
:copyright: (c) 2020 - 2022 sh-edraft.de
2021-03-08 22:14:37 +01:00
:license: MIT, see LICENSE for more details.
"""
__title__ = 'cpl_cli'
2021-03-08 22:14:37 +01:00
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
2022-04-30 16:33:30 +02:00
__copyright__ = 'Copyright (c) 2020 - 2022 sh-edraft.de'
__version__ = '2022.10.11'
2021-03-08 22:14:37 +01:00
from collections import namedtuple
2022-07-10 18:08:44 +02:00
2021-03-08 22:14:37 +01:00
# imports:
2021-03-08 22:19:36 +01:00
from .cli import CLI
from .command_abc import CommandABC
from .error import Error
from .main import main
from .startup import Startup
2021-03-08 22:14:37 +01:00
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='2022', minor='10', micro='11')