FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
PySimpleGUI/setup.py at master · PySimpleGUI/PySimpleGUI · GitHub
PySimpleGUI
/
PySimpleGUI
Public
Notifications
You must be signed in to change notification settings
Fork
1.8k
Star
13.8k
Code
Issues
708
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
PySimpleGUI
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
50 lines (46 loc) · 2.46 KB
Breadcrumbs
PySimpleGUI
/
setup.py
Copy path
File metadata and controls
50 lines (46 loc) · 2.46 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import
setuptools
def
readme
():
try
:
with
open
(
'README.md'
,
encoding
=
'utf-8'
)
as
f
:
return
f
.
read
()
except
IOError
:
return
''
setuptools
.
setup
(
name
=
"pysimplegui"
,
version
=
"6.3.16"
,
author
=
"PySimpleGUI"
,
author_email
=
"PySimpleGUI@PySimpleGUI.org"
,
description
=
"Python GUIs for Humans. Launched in 2018. NEW LGPL3 Version 6 released in 2026."
,
long_description
=
readme
(),
long_description_content_type
=
"text/markdown"
,
keywords
=
"GUI UI tkinter Qt WxPython Remi wrapper simple easy beginner novice student graphics progressbar progressmeter"
,
url
=
"https://github.com/PySimpleGUI/PySimpleGUI"
,
packages
=
setuptools
.
find_packages
(),
install_requires
=
[ ],
python_requires
=
'>=3.6'
,
license
=
'GNU Lesser General Public License v3 (LGPLv3)'
,
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)"
,
"Intended Audience :: Developers"
,
"Operating System :: OS Independent"
,
"Framework :: PySimpleGUI"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
"Programming Language :: Python :: 3.8"
,
"Programming Language :: Python :: 3.9"
,
"Programming Language :: Python :: 3.10"
,
"Programming Language :: Python :: 3.11"
,
"Programming Language :: Python :: 3.12"
,
"Programming Language :: Python :: 3.13"
,
"Programming Language :: Python :: 3.14"
,
"Programming Language :: Python :: 3.15"
,
"Topic :: Multimedia :: Graphics"
,
"Topic :: Software Development :: User Interfaces"
,],
entry_points
=
{
'gui_scripts'
: [
'psgmain=PySimpleGUI.PySimpleGUI:_main_entry_point'
,
'psghome=PySimpleGUI.PySimpleGUI:_main_entry_point'
,
'psghelp=PySimpleGUI.PySimpleGUI:main_sdk_help'
,
'psgver=PySimpleGUI.PySimpleGUI:main_get_debug_data'
,
"psgupgrade=PySimpleGUI.PySimpleGUI:_upgrade_entry_point"
,
'psgsettings=PySimpleGUI.PySimpleGUI:main_global_pysimplegui_settings'
,], },
)
Back
|
FazBrowse Home
|
New Git URL