sh_cpl/src/cpl_cli/templates/__init__.py

26 lines
583 B
Python
Raw Normal View History

2021-03-10 08:09:56 +01:00
# -*- coding: utf-8 -*-
"""
2021-04-07 19:19:20 +02:00
sh_cpl-cli sh-edraft Common Python library CLI
2021-03-10 08:09:56 +01:00
~~~~~~~~~~~~~~~~~~~
2021-04-07 19:19:20 +02:00
sh-edraft Common Python library Command Line Interface
2021-03-10 08:09:56 +01:00
:copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'cpl_cli.templates'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
2021-04-07 19:19:20 +02:00
__version__ = '2021.4'
2021-03-10 08:09:56 +01:00
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2021-04-07 19:19:20 +02:00
version_info = VersionInfo(major='2021', minor='4', micro='None')