代码拉取完成,页面将自动刷新
import distutils.core
## WARNING: Although the following import appears to do nothing, it is required for bdist_wheel to be recognized
from setuptools import setup, find_packages
version = "0.98.3"
release = "0.98.3"
desc = list()
desc.append('EasyGUI is a module for very simple, very easy GUI programming in Python. ')
desc.append('EasyGUI is different from other GUI generators in that EasyGUI is NOT event-driven. ')
desc.append('Instead, all GUI interactions are invoked by simple function calls.')
with open('README.md', "r", encoding='utf-8') as f:
long_description = f.read()
distutils.core.setup(
name='easygui',
version=version,
url='https://github.com/robertlugg/easygui',
description=''.join(desc),
long_description=long_description,
long_description_content_type="text/markdown",
author='easygui developers and Stephen Ferg',
author_email='robert.lugg@gmail.com',
license='BSD',
keywords='gui linux windows graphical user interface',
packages=['easygui', 'easygui.boxes'],
package_data={
'easygui': ['python_and_check_logo.*', 'zzzzz.gif']
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: User Interfaces',
]
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。