sh_cpl/src/sh_edraft/__init__.py

25 lines
531 B
Python
Raw Normal View History

2020-11-19 23:06:57 +01:00
# -*- coding: utf-8 -*-
"""
sh_edraft python common lib
~~~~~~~~~~~~~~~~~~~
Common python functions and classes for sh-edraft.de ecosystem
:copyright: (c) 2020 edraft
:license: MIT, see LICENSE for more details.
"""
__title__ = 'sh_edraft.de'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright 2020 sh-edraft.de'
__version__ = '2020.12.0.1'
from collections import namedtuple
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major=2020, minor=12, micro=0.1)