add pip bins
This commit is contained in:
parent
7644adfe64
commit
f913e5f4e5
11
local/bin/pygmentize
Executable file
11
local/bin/pygmentize
Executable 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
10
local/bin/qutebrowser
Executable 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')()
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user