#!/bin/sh
'''exec' "/home/lvjhn/Projects/Package Building Instructions/packaging/demo-package-python/env/bin/python" "$0" "$@"
' '''
# -*- coding: utf-8 -*-
import re
import sys
from faker.cli import execute_from_command_line
if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
    sys.exit(execute_from_command_line())
