mirror of https://github.com/sgoudham/Enso-Bot.git
Added the OwO library
parent
10d1772ed6
commit
713c4e28ca
@ -0,0 +1 @@
|
|||||||
|
pip
|
@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2020 DerpyChap
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
@ -0,0 +1,12 @@
|
|||||||
|
../../Scripts/owo.exe,sha256=7Iegpj7ccd5b8eMUmAJP7bXnFnf1zKg1H4xNygMniC8,106362
|
||||||
|
owotext-1.0.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||||
|
owotext-1.0.2.dist-info/LICENSE,sha256=gyE9VQ6VNdPWhh7werSoct9rIfQ45e8ieK-w8rhiyOI,1066
|
||||||
|
owotext-1.0.2.dist-info/METADATA,sha256=njZLhyeLL0f82zBqp9E0m5VSO8grVyu8uYO6VsQ5GJQ,2196
|
||||||
|
owotext-1.0.2.dist-info/RECORD,,
|
||||||
|
owotext-1.0.2.dist-info/WHEEL,sha256=g4nMs7d-Xl9-xC9XovUrsDHGXt-FT0E17Yqo92DEfvY,92
|
||||||
|
owotext-1.0.2.dist-info/entry_points.txt,sha256=Zn46oIdbLcr6saabpT1rEeVMaWN-LbDjH_SrOY6gWYw,42
|
||||||
|
owotext-1.0.2.dist-info/top_level.txt,sha256=alWrwwX0Fai4oH1nMtHw53Cyy1XK9aTqdKtjItWcpl0,8
|
||||||
|
owotext/__init__.py,sha256=CsD2Xn8aQOacr-06QpsPYD7VHSZ2dxkhVq1cpwck4w8,550
|
||||||
|
owotext/__pycache__/__init__.cpython-36.pyc,,
|
||||||
|
owotext/__pycache__/owo.cpython-36.pyc,,
|
||||||
|
owotext/owo.py,sha256=_zsF9U4sPG42IyosahT6f59yEhIWBKJZuryqlD_S7bs,1671
|
@ -0,0 +1,5 @@
|
|||||||
|
Wheel-Version: 1.0
|
||||||
|
Generator: bdist_wheel (0.34.2)
|
||||||
|
Root-Is-Purelib: true
|
||||||
|
Tag: py3-none-any
|
||||||
|
|
@ -0,0 +1,3 @@
|
|||||||
|
[console_scripts]
|
||||||
|
owo = owotext.owo:main
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
owotext
|
@ -0,0 +1,22 @@
|
|||||||
|
# -*- 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)
|
Binary file not shown.
Loading…
Reference in New Issue