File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 77.idea *
88pipgui /test /*
99.vscode
10+ bin
1011
File renamed without changes.
Original file line number Diff line number Diff line change 1919
2020setup (
2121 name = "pipgui" ,
22- version = 1.1 ,
22+ version = 1.2 ,
2323 description = "This package is GUI based tool for installing pip packages in your environment." ,
2424 url = "https://github.com/GDGVIT/pip-gui" ,
2525 author = "Ayush Priya, DSC-VIT" ,
2828 "pipgui" ,
2929 "pipgui.*"
3030 ]),
31+ # cmdclass={
32+ # 'install': Install,
33+ # },
34+ python_requires = '>=3.4' ,
3135 include_package_data = True ,
3236 # py_modules=["pip_gui.mainGUI"],
3337 entry_points = {
3438 "console_scripts" : [
35- "pipgui=pipgui.mainGUI :main"
39+ "pipgui=pipgui.__main__ :main"
3640 ]
3741 },
3842 classifiers = [
3943 "Development Status :: 4 - Beta" ,
4044 "License :: OSI Approved :: GNU General Public License v3 (GPLv3)" ,
41- "Environment :: X11 Applications :: Qt" ,
4245 "Programming Language :: Python :: 3" ,
4346 "Programming Language :: Python :: 3 :: Only" ,
4447 "Programming Language :: Python :: 3.6" ,
4548 "Programming Language :: Python :: Implementation :: CPython"
4649 ],
4750 install_requires = [
48- "PyQt5" ,
49- "beautifulsoup4"
50- ]
51+ "beautifulsoup4" ,
52+ "sip==4.19.8" ,
53+ "PyQt5==5.10.1"
54+ ],
55+
5156)
You can’t perform that action at this time.
0 commit comments