# -*- coding: utf-8 -*- from setuptools import setup setup( name = "cmdline-owo", packages = ["owo"], entry_points = { "console_scripts": ['owo = owo.owo:main'] }, version = "0.2.3", description = "owoify any text from the command line", author = "Alfie King", author_email = "acetheking987@gmail.com" )