#!/bin/sh
# Wrapper for calling `pygmentize` via Shellbox.
#
# Blubber places Python libraries in a non-standard location which requires
# adjusting the PYTHONPATH environment variable to access.
export PYTHONUNBUFFERED=1
export PYTHONDONTWRITEBYTECODE=1
export PYTHONPATH=/opt/lib/python/site-packages
exec /opt/lib/python/site-packages/bin/pygmentize "$@"
