qrtr-services/pvenv/bin/wheel
2019-10-27 18:32:21 -06:00

11 lines
237 B
Python
Executable File

#!/home/djg/practice/plaid/pvenv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from wheel.cli import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())