term-owo/setup.py

17 lines
393 B
Python
Raw Normal View History

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