aboutsummaryrefslogtreecommitdiffstats
path: root/tagit
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2022-12-18 16:34:22 +0100
committerMatthias Baumgartner <dev@igsor.net>2022-12-18 16:34:22 +0100
commite1e77797454ac747b293f589d8f2e0243173a419 (patch)
treebbc69d85a5411892ea54c80542335f269a29d9e6 /tagit
downloadtagit-e1e77797454ac747b293f589d8f2e0243173a419.tar.gz
tagit-e1e77797454ac747b293f589d8f2e0243173a419.tar.bz2
tagit-e1e77797454ac747b293f589d8f2e0243173a419.zip
initial commit
Diffstat (limited to 'tagit')
-rw-r--r--tagit/__init__.py18
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 ##