2021-03-10 08:09:56 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
sh_cpl sh-edraft Common Python library
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
sh-edraft Common Python library
|
|
|
|
|
|
|
|
: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-03-31 11:25:07 +02:00
|
|
|
__version__ = '2021.4.0rc4.post1'
|
2021-03-10 08:09:56 +01:00
|
|
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
|
|
|
# imports:
|
|
|
|
|
|
|
|
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
|
2021-03-31 11:25:07 +02:00
|
|
|
version_info = VersionInfo(major='2021', minor='04', micro='0rc4-1')
|