mirror of https://github.com/sgoudham/Enso-Bot.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
550 B
Python
23 lines
550 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
owotext
|
|
~~~~~~~~~~~~~~~~~~~
|
|
A Python library for converting text strings into OwO
|
|
:copyright: (c) 2020 DerpyChap
|
|
:license: MIT, see LICENSE for more details.
|
|
"""
|
|
|
|
__title__ = 'owotext'
|
|
__author__ = 'DerpyChap'
|
|
__license__ = 'ISC'
|
|
__copyright__ = 'Copyright 2020 DerpyChap'
|
|
__version__ = '1.0.2'
|
|
|
|
from collections import namedtuple
|
|
from .owo import OwO
|
|
|
|
VersionInfo = namedtuple('VersionInfo', 'major minor micro releaselevel serial')
|
|
|
|
version_info = VersionInfo(
|
|
major=1, minor=0, micro=1, releaselevel='final', serial=0)
|