sh_cpl/src/cpl_cli/templates/__init__.py

26 lines
559 B
Python
Raw Normal View History

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-04-07 17:01:39 +02:00
__version__ = '2021.4.post1'
2021-03-10 08:09:56 +01:00
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2021-04-07 17:01:39 +02:00
version_info = VersionInfo(major='2021', minor='4', micro='post1')