This repository has been archived on 2022-07-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
sh_gismo/src/gismo_cli/__init__.py
2021-11-25 20:45:16 +01:00

26 lines
551 B
Python

# -*- coding: utf-8 -*-
"""
gismo-cli sh-edraft Gismo - CLI
~~~~~~~~~~~~~~~~~~~
sh-edraft Dicord bot Gismo - command line interface
:copyright: (c) 2021 - 2022 sh-edraft.de
:license: MIT, see LICENSE for more details.
"""
__title__ = 'gismo_cli'
__author__ = 'Sven Heidemann'
__license__ = 'MIT'
__copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de'
__version__ = '0.1.0'
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='0', minor='1', micro='0')