sh_cpl/src/cpl_cli/abc/__init__.py

27 lines
517 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
"""
2023-02-20 15:55:20 +01:00
cpl-cli CPL CLI
~~~~~~~~~~~~~~~~~~~
2023-02-20 15:55:20 +01:00
CPL Command Line Interface
2022-12-25 12:04:25 +01:00
:copyright: (c) 2020 - 2023 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
2023-02-20 15:55:20 +01:00
__title__ = "cpl_cli.abc"
__author__ = "Sven Heidemann"
__license__ = "MIT"
__copyright__ = "Copyright (c) 2020 - 2023 sh-edraft.de"
__version__ = "2023.2.0"
from collections import namedtuple
# imports
2023-02-20 15:55:20 +01:00
VersionInfo = namedtuple("VersionInfo", "major minor micro")
version_info = VersionInfo(major="2023", minor="2", micro="0")