From cb8bd20b412672fb93825a853c9d463d2332c976 Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Sat, 24 Aug 2019 22:06:06 -0400 Subject: [PATCH] Experimenting to see if can pip install from the GitHub itself --- setup.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..6f974b18 --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +import setuptools + +def readme(): + try: + with open('README.md') as f: + return f.read() + except IOError: + return '' + + +setuptools.setup( + name="PySimpleGUI", + version="4.4.0.X Unreleased", + author="PySimpleGUI", + author_email="PySimpleGUI@PySimpleGUI.org", + description="GUI SDK Launched in 2018 Actively developed and supported. Super-simple to create custom GUI's. Python 2.7 & 3 Support. 100 Demo programs & Cookbook for rapid start. Extensive documentation. Examples using Machine Learning(GUI, OpenCV Integration, Chatterbot), Rainmeter Style Floating Desktop Widgets, Matplotlib + Pyplot integration, add GUI to command line scripts, PDF & Image Viewer. Great for beginners as well as advanced GUI programmers", + long_description=readme(), + long_description_content_type="text/markdown", + keywords="GUI UI tkinter wrapper simple easy beginner novice student graphics progressbar progressmeter", + url="https://github.com/PySimpleGUI/PySimpleGUI", + packages=setuptools.find_packages(), + classifiers=( + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", + "Topic :: Multimedia :: Graphics", + "Operating System :: OS Independent" + ), +) \ No newline at end of file