Files
web/venv/bin/easy_install
timothypidashev 5bf2ef6b1c upload test
2021-07-15 17:36:10 +00:00

9 lines
252 B
Python
Executable File

#!/root/Timmy/Portfolio/venv/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from setuptools.command.easy_install import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())