2021-07-25 12:24:58 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2022-04-30 16:33:30 +02:00
|
|
|
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
|
|
|
|
2022-05-25 19:59:38 +02:00
|
|
|
:copyright: (c) 2021 - 2022 sh-edraft.de
|
2021-07-26 15:55:08 +02:00
|
|
|
: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'
|
2022-05-25 19:59:38 +02:00
|
|
|
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'
|
2022-12-05 14:12:20 +01:00
|
|
|
__version__ = '2022.12.dev134'
|
2021-07-25 12:24:58 +02:00
|
|
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
2022-07-10 18:08:44 +02:00
|
|
|
|
2022-09-12 22:53:52 +02:00
|
|
|
# imports:
|
2021-07-25 12:24:58 +02:00
|
|
|
|
|
|
|
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
|
2022-12-05 14:12:20 +01:00
|
|
|
version_info = VersionInfo(major='2022', minor='12', micro='dev134')
|