sh_cpl/src/cpl_cli/abc/__init__.py

27 lines
529 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-04-04 14:50:19 +02:00
__title__ = "cpl_cli.abc"
__author__ = "Sven Heidemann"
__license__ = "MIT"
__copyright__ = "Copyright (c) 2020 - 2023 sh-edraft.de"
2023-06-13 15:56:46 +02:00
__version__ = "2023.4.0.post3"
from collections import namedtuple
# imports
2023-04-04 14:50:19 +02:00
VersionInfo = namedtuple("VersionInfo", "major minor micro")
2023-06-13 15:56:46 +02:00
version_info = VersionInfo(major="2023", minor="4", micro="0.post3")