sh_cpl/src/cpl_query/__init__.py

26 lines
584 B
Python
Raw Normal View History

2021-07-25 12:24:58 +02:00
# -*- coding: utf-8 -*-
"""
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'
2021-11-30 11:21:19 +01:00
__version__ = '2021.11.0'
2021-07-25 12:24:58 +02:00
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
2021-11-30 11:21:19 +01:00
version_info = VersionInfo(major='2021', minor='11', micro='0')