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

11
local/bin/pygmentize Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/python3.4
# -*- coding: utf-8 -*-
import re
import sys
from pygments.cmdline import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())

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')()
)