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