File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 7
7
.idea *
8
8
pipgui /test /*
9
9
.vscode
10
+ bin
10
11
File renamed without changes.
Original file line number Diff line number Diff line change 19
19
20
20
setup (
21
21
name = "pipgui" ,
22
- version = 1.1 ,
22
+ version = 1.2 ,
23
23
description = "This package is GUI based tool for installing pip packages in your environment." ,
24
24
url = "https://github.com/GDGVIT/pip-gui" ,
25
25
author = "Ayush Priya, DSC-VIT" ,
28
28
"pipgui" ,
29
29
"pipgui.*"
30
30
]),
31
+ # cmdclass={
32
+ # 'install': Install,
33
+ # },
34
+ python_requires = '>=3.4' ,
31
35
include_package_data = True ,
32
36
# py_modules=["pip_gui.mainGUI"],
33
37
entry_points = {
34
38
"console_scripts" : [
35
- "pipgui=pipgui.mainGUI :main"
39
+ "pipgui=pipgui.__main__ :main"
36
40
]
37
41
},
38
42
classifiers = [
39
43
"Development Status :: 4 - Beta" ,
40
44
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
41
- "Environment :: X11 Applications :: Qt" ,
42
45
"Programming Language :: Python :: 3" ,
43
46
"Programming Language :: Python :: 3 :: Only" ,
44
47
"Programming Language :: Python :: 3.6" ,
45
48
"Programming Language :: Python :: Implementation :: CPython"
46
49
],
47
50
install_requires = [
48
- "PyQt5" ,
49
- "beautifulsoup4"
50
- ]
51
+ "beautifulsoup4" ,
52
+ "sip==4.19.8" ,
53
+ "PyQt5==5.10.1"
54
+ ],
55
+
51
56
)
You can’t perform that action at this time.
0 commit comments