From fc1bc20b2df331468ee4398dee0aa143d6a2652e Mon Sep 17 00:00:00 2001 From: Lavender Perry Date: Fri, 10 Sep 2021 16:51:15 -0700 Subject: [PATCH] Improved packaging --- pat/pat.py => pat.py | 0 pat/__init__.py | 0 setup.py | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename pat/pat.py => pat.py (100%) delete mode 100644 pat/__init__.py diff --git a/pat/pat.py b/pat.py similarity index 100% rename from pat/pat.py rename to pat.py diff --git a/pat/__init__.py b/pat/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/setup.py b/setup.py index ccd9c63..4d75825 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,14 @@ from setuptools import setup setup( name = "patcat", - version = "2021.09.10.1", + version = "2021.09.10.2", description = "Outputs text with rainbow colors.", long_description = open("README").read(), long_description_content_type = "text/markdown", url = "https://gitdab.com/endie2/pat", author = "Lavender Perry", author_email = "endie2@protonmail.com", - packages = ["pat"], + scripts = ["pat.py"], classifiers = [ "Development Status :: 5 - Production/Stable", "Environment :: Console",