sh_cpl/docs/init_template.txt

25 lines
351 B
Plaintext
Raw Normal View History

2020-11-19 23:06:57 +01:00
# -*- coding: utf-8 -*-
"""
{} {}
~~~~~~~~~~~~~~~~~~~
{}
:copyright: (c) {} {}
:license: {}
"""
__title__ = '{}'
__author__ = '{}'
__license__ = '{}'
__copyright__ = '{}'
__version__ = '{}'
from collections import namedtuple
VersionInfo = namedtuple('VersionInfo', 'major minor micro')
version_info = VersionInfo(major={}, minor={}, micro={})