term-owo/setup.py
2024-04-19 22:26:11 +01:00

16 lines
354 B
Python

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