diff --git a/src/database/__init__.py b/src/database/__init__.py index ad5eca3..099bca2 100644 --- a/src/database/__init__.py +++ b/src/database/__init__.py @@ -1 +1,25 @@ +# -*- coding: utf-8 -*- + +""" +database sh-edraft Gismo - database core +~~~~~~~~~~~~~~~~~~~ + +sh-edraft Dicord bot Gismo - database implementation of cpl.database + +:copyright: (c) 2021 - 2022 sh-edraft.de +:license: MIT, see LICENSE for more details. + +""" + +__title__ = 'database' +__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') diff --git a/src/gismo_cli/__init__.py b/src/gismo_cli/__init__.py index ad5eca3..8318a61 100644 --- a/src/gismo_cli/__init__.py +++ b/src/gismo_cli/__init__.py @@ -1 +1,25 @@ +# -*- 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') diff --git a/src/gismo_core/__init__.py b/src/gismo_core/__init__.py index 2dcbf1d..4ee4e9e 100644 --- a/src/gismo_core/__init__.py +++ b/src/gismo_core/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +gismo-core sh-edraft Gismo - core ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - core library :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/gismo_core/abc/__init__.py b/src/gismo_core/abc/__init__.py index 79226e4..58b8479 100644 --- a/src/gismo_core/abc/__init__.py +++ b/src/gismo_core/abc/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +gismo-core sh-edraft Gismo - core ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - core library :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/gismo_core/configuration/__init__.py b/src/gismo_core/configuration/__init__.py index a5a1baa..3ae8faa 100644 --- a/src/gismo_core/configuration/__init__.py +++ b/src/gismo_core/configuration/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +gismo-core sh-edraft Gismo - core ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - core library :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/gismo_core/service/__init__.py b/src/gismo_core/service/__init__.py index 1947127..2eae97b 100644 --- a/src/gismo_core/service/__init__.py +++ b/src/gismo_core/service/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +gismo-core sh-edraft Gismo - core ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - core library :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/gismo_db/__init__.py b/src/gismo_db/__init__.py index 4265bbc..d9d752f 100644 --- a/src/gismo_db/__init__.py +++ b/src/gismo_db/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +gismo-db sh-edraft Gismo - Database ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - Database :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/modules/boot_log/__init__.py b/src/modules/boot_log/__init__.py index 3354a8e..78e0aa2 100644 --- a/src/modules/boot_log/__init__.py +++ b/src/modules/boot_log/__init__.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +modules/boot-log sh-edraft Gismo - Boot log ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - Boot log :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. """ -__title__ = 'modules.boot_log' +__title__ = 'boot_log' __author__ = 'Sven Heidemann' __license__ = 'MIT' __copyright__ = 'Copyright (c) 2021 - 2022 sh-edraft.de' diff --git a/src/modules_core/__init__.py b/src/modules_core/__init__.py index 979887f..9086fbb 100644 --- a/src/modules_core/__init__.py +++ b/src/modules_core/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +modules-core sh-edraft Gismo - Modules core ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - Modules core :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/modules_core/abc/__init__.py b/src/modules_core/abc/__init__.py index a65a733..c345cc5 100644 --- a/src/modules_core/abc/__init__.py +++ b/src/modules_core/abc/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +modules-core sh-edraft Gismo - Modules core ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - Modules core :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details. diff --git a/src/modules_core/service/__init__.py b/src/modules_core/service/__init__.py index 3f494a0..6d10b94 100644 --- a/src/modules_core/service/__init__.py +++ b/src/modules_core/service/__init__.py @@ -1,10 +1,10 @@ # -*- coding: utf-8 -*- """ -gismo sh-edraft Gismo +modules-core sh-edraft Gismo - Modules core ~~~~~~~~~~~~~~~~~~~ -sh-edraft Dicord bot Gismo +sh-edraft Dicord bot Gismo - Modules core :copyright: (c) 2021 - 2022 sh-edraft.de :license: MIT, see LICENSE for more details.