Skip to content

Commit af61a50

Browse files
authored
Merge pull request #21 from Geek-ubaid/master
Sip error fixed
2 parents 01a1dab + 0f32914 commit af61a50

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ dist/
77
.idea*
88
pipgui/test/*
99
.vscode
10+
bin
1011

File renamed without changes.

setup.py

+11-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
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",
@@ -28,24 +28,29 @@
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
)

0 commit comments

Comments
 (0)