term-owo/setup.py

16 lines
354 B
Python
Raw Permalink 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 21:26:11 +00:00
version = "0.2.3",
2024-04-19 12:36:57 +00:00
description = "owoify any text from the command line",
author = "Alfie King",
author_email = "acetheking987@gmail.com"
)