#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'pypirun==1.1.147606','console_scripts','pypirun_true'
__requires__ = 'pypirun==1.1.147606'
import re
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
    sys.exit(
        load_entry_point('pypirun==1.1.147606', 'console_scripts', 'pypirun_true')()
    )
