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)