Skip to content

Commit

Permalink
Merge pull request #21 from Geek-ubaid/master
Browse files Browse the repository at this point in the history
Sip error fixed
  • Loading branch information
L04DB4L4NC3R authored Jan 24, 2020
2 parents 01a1dab + 0f32914 commit af61a50
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ dist/
.idea*
pipgui/test/*
.vscode
bin

File renamed without changes.
17 changes: 11 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name="pipgui",
version=1.1,
version=1.2,
description="This package is GUI based tool for installing pip packages in your environment.",
url="https://github.com/GDGVIT/pip-gui",
author="Ayush Priya, DSC-VIT",
Expand All @@ -28,24 +28,29 @@
"pipgui",
"pipgui.*"
]),
# cmdclass={
# 'install': Install,
# },
python_requires = '>=3.4',
include_package_data=True,
# py_modules=["pip_gui.mainGUI"],
entry_points={
"console_scripts": [
"pipgui=pipgui.mainGUI:main"
"pipgui=pipgui.__main__:main"
]
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: X11 Applications :: Qt",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython"
],
install_requires=[
"PyQt5",
"beautifulsoup4"
]
"beautifulsoup4",
"sip==4.19.8",
"PyQt5==5.10.1"
],

)

0 comments on commit af61a50

Please sign in to comment.