diff --git a/pat/__init__.py b/pat/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pat.py b/pat/pat.py similarity index 100% rename from pat.py rename to pat/pat.py diff --git a/setup.py b/setup.py index c1a4e1c..c186f32 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,20 @@ -from distutils.core import setup +from setuptools import setup setup( name = "pat", - version = "2021.09.07", - scripts = ["pat.py"] + 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" + ] )