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