From e1e77797454ac747b293f589d8f2e0243173a419 Mon Sep 17 00:00:00 2001 From: Matthias Baumgartner Date: Sun, 18 Dec 2022 16:34:22 +0100 Subject: initial commit --- tagit/__init__.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tagit/__init__.py (limited to 'tagit') diff --git a/tagit/__init__.py b/tagit/__init__.py new file mode 100644 index 0000000..7197091 --- /dev/null +++ b/tagit/__init__.py @@ -0,0 +1,18 @@ +""" + +Part of the tagit module. +A copy of the license is provided with the project. +Author: Matthias Baumgartner, 2022 +""" +# imports +import collections +import typing + +# constants +T_VERSION_INFO = collections.namedtuple('T_VERSION_INFO', ('major', 'minor', 'micro')) +version_info = T_VERSION_INFO(0, 0, 1) + +# exports +__all__: typing.Sequence[str] = [] + +## EOF ## -- cgit v1.2.3