2022-12-10 21:43:46 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2023-02-20 15:55:20 +01:00
|
|
|
cpl-cli CPL CLI
|
2022-12-10 21:43:46 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2023-02-20 15:55:20 +01:00
|
|
|
CPL Command Line Interface
|
2022-12-10 21:43:46 +01:00
|
|
|
|
2022-12-25 12:04:25 +01:00
|
|
|
:copyright: (c) 2020 - 2023 sh-edraft.de
|
2022-12-10 21:43:46 +01:00
|
|
|
: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"
|
2022-12-10 21:43:46 +01:00
|
|
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
|
|
|
|
2022-12-05 19:57:27 +01:00
|
|
|
# imports
|
2022-12-10 21:43:46 +01:00
|
|
|
|
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")
|