2021-03-04 21:57:30 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2021-03-08 20:29:08 +01:00
|
|
|
sh_cpl sh-edraft Common Python library
|
2021-03-04 21:57:30 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2021-03-08 20:29:08 +01:00
|
|
|
sh-edraft Common Python library
|
2021-03-04 21:57:30 +01:00
|
|
|
|
|
|
|
:copyright: (c) 2020 sh-edraft.de
|
2021-03-08 20:29:54 +01:00
|
|
|
:license: MIT, see LICENSE for more details.
|
2021-03-04 21:57:30 +01:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
2021-03-08 20:29:08 +01:00
|
|
|
__title__ = 'src.cpl.mailing'
|
2021-03-04 21:57:30 +01:00
|
|
|
__author__ = 'Sven Heidemann'
|
|
|
|
__license__ = 'MIT'
|
|
|
|
__copyright__ = 'Copyright (c) 2020 sh-edraft.de'
|
|
|
|
__version__ = '2021.4.1'
|
|
|
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
|
|
|
# imports:
|
|
|
|
|
|
|
|
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
|
|
|
|
version_info = VersionInfo(major=2021, minor=4, micro=1)
|