Removed very old setup.py file

This commit is contained in:
PySimpleGUI 2022-10-20 18:41:52 -04:00
parent 27618d1393
commit b406df0d6c
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
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.999",
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"
),
)