2021-07-25 12:24:58 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2021-08-02 14:36:00 +02:00
|
|
|
sh_cpl-query sh-edraft Common Python library Query
|
2021-07-25 12:24:58 +02:00
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2021-07-26 15:55:08 +02:00
|
|
|
sh-edraft Common Python library Python integrated Queries
|
2021-07-25 12:24:58 +02:00
|
|
|
|
2021-07-26 15:55:08 +02:00
|
|
|
:copyright: (c) 2020 - 2021 sh-edraft.de
|
|
|
|
:license: MIT, see LICENSE for more details.
|
2021-07-25 12:24:58 +02:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
__title__ = 'cpl_query'
|
2021-07-26 15:55:08 +02:00
|
|
|
__author__ = 'Sven Heidemann'
|
|
|
|
__license__ = 'MIT'
|
|
|
|
__copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
|
2022-01-08 18:09:03 +01:00
|
|
|
__version__ = '2021.11.0.post2'
|
2021-07-25 12:24:58 +02:00
|
|
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
|
|
|
# imports:
|
|
|
|
|
|
|
|
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
|
2022-01-08 18:09:03 +01:00
|
|
|
version_info = VersionInfo(major='2021', minor='11', micro='0.post2')
|