Remove “pygobject” requirement from setup.py (fixes #31)

“pygobject” is not a python dependency and can therefore not be used as install
requirement for setup.py. To avoid an error message and let the application
start fine, this needs to be removed from setup.py.
This commit is contained in:
coderkun 2017-10-22 10:39:28 +02:00
parent 681c81bf17
commit 9f32bed11e

View file

@ -76,9 +76,6 @@ setup(
'de.coderkun.mcg.gresource'
]
},
install_requires = [
"pygobject"
],
extras_require = {
'keyring support': ["python-keyring"]
},