This commit is contained in:
2021-03-30 12:44:31 +02:00
parent 3428c70b69
commit 0da83935fc
22 changed files with 807 additions and 76 deletions

View File

@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
"""
test2
~~~~~~~~~~~~~~~~~~~
:copyright: (c)
:license:
"""
__title__ = 'test2.test2'
__author__ = ''
__license__ = ''
__copyright__ = 'Copyright (c) '
__version__ = '0.0.0'
from collections import namedtuple
# imports:
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major='0', minor='0', micro='0')