2023-04-15 21:49:34 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
cpl-reactive-extensions CPL Simple ReactiveX implementation
|
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
CPL Simple ReactiveX implementation, see RxJS and RxPy for detailed implementation.
|
|
|
|
|
|
|
|
:copyright: (c) 2023 sh-edraft.de
|
|
|
|
:license: MIT, see LICENSE for more details.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
__title__ = "cpl_reactive_extensions"
|
|
|
|
__author__ = "Sven Heidemann"
|
|
|
|
__license__ = "MIT"
|
|
|
|
__copyright__ = "Copyright (c) 2023 sh-edraft.de"
|
|
|
|
__version__ = "2023.4.dev170"
|
|
|
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
2023-04-16 21:46:17 +02:00
|
|
|
|
2023-04-15 16:17:31 +02:00
|
|
|
# imports
|
2023-04-15 21:49:34 +02:00
|
|
|
|
|
|
|
VersionInfo = namedtuple("VersionInfo", "major minor micro")
|
|
|
|
version_info = VersionInfo(major="2023", minor="4", micro="dev170")
|