2021-03-04 21:57:18 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2021-04-07 19:19:20 +02:00
|
|
|
sh_cpl-cli sh-edraft Common Python library CLI
|
2021-03-04 21:57:18 +01:00
|
|
|
~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2021-04-07 19:19:20 +02:00
|
|
|
sh-edraft Common Python library Command Line Interface
|
2021-03-04 21:57:18 +01:00
|
|
|
|
2021-03-08 20:40:54 +01:00
|
|
|
:copyright: (c) 2020 - 2021 sh-edraft.de
|
2021-03-08 20:29:54 +01:00
|
|
|
:license: MIT, see LICENSE for more details.
|
2021-03-04 21:57:18 +01:00
|
|
|
|
|
|
|
"""
|
|
|
|
|
2021-03-08 20:32:09 +01:00
|
|
|
__title__ = 'cpl_cli.publish'
|
2021-03-04 21:57:18 +01:00
|
|
|
__author__ = 'Sven Heidemann'
|
|
|
|
__license__ = 'MIT'
|
2021-03-08 20:40:54 +01:00
|
|
|
__copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
|
2021-11-29 09:30:46 +01:00
|
|
|
__version__ = '2021.10.5.post1'
|
2021-03-04 21:57:18 +01:00
|
|
|
|
|
|
|
from collections import namedtuple
|
|
|
|
|
|
|
|
# imports:
|
2021-03-12 16:10:43 +01:00
|
|
|
from .publisher_abc import PublisherABC
|
|
|
|
from .publisher_service import PublisherService
|
2021-03-04 21:57:18 +01:00
|
|
|
|
|
|
|
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
|
2021-11-29 09:30:46 +01:00
|
|
|
version_info = VersionInfo(major='2021', minor='10', micro='5.post1')
|