20 lines
613 B
Python
20 lines
613 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name = "pat",
|
|
version = "2021.09.09",
|
|
description = "Outputs text with rainbow colors.",
|
|
url = "https://gitdab.com/endie2/pat",
|
|
author = "Lavender Perry",
|
|
author_email = "endie2@protonmail.com",
|
|
packages = ["pat"],
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"Intended Audience :: End Users/Desktop",
|
|
"License :: Public Domain",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: Utilities"
|
|
]
|
|
)
|