term-owo/setup.py
2024-04-19 15:47:35 +01:00

17 lines
393 B
Python

# -*- 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"
)