diff options
Diffstat (limited to 'tagit')
-rw-r--r-- | tagit/__init__.py | 18 |
1 files changed, 18 insertions, 0 deletions
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 ## |