add pip bins

This commit is contained in:
Felix Van der Jeugt 2016-03-16 23:07:20 +01:00
parent 7644adfe64
commit f913e5f4e5
2 changed files with 21 additions and 0 deletions

10
local/bin/qutebrowser Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/python3.4
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==0.5.1','gui_scripts','qutebrowser'
__requires__ = 'qutebrowser==0.5.1'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('qutebrowser==0.5.1', 'gui_scripts', 'qutebrowser')()
)