From c677b3d5805145b98da91208ca4b380fbeb12017 Mon Sep 17 00:00:00 2001 From: Claydough6 <33795853+Claydough6@users.noreply.github.com> Date: Tue, 4 May 2021 23:25:03 -0400 Subject: [PATCH] Create setup.py Used to install package. --- setup.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..aab7403 --- /dev/null +++ b/setup.py @@ -0,0 +1,11 @@ +from setuptools import setup + +setup(name="resolution_gui", + version="1.0", + description="A resolution GUI app for prop logic", + url="https://github.com/Claydough6/gui_resolution", + author="Clay Bell and Kevin Khaghani", + author_email="claybell01@gmail.com", + license="MIT", + packages=["resolution_gui"], + zip_safe=False)