This commit is contained in:
2019-06-11 22:24:08 +01:00
parent d67462ecfe
commit dde9b24015
619 changed files with 112020 additions and 1 deletions

12
venv/bin/easy_install Executable file
View File

@@ -0,0 +1,12 @@
#!/home/miguel456/PycharmProjects/PythonVPNGateway/venv/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install'
__requires__ = 'setuptools==40.8.0'
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('setuptools==40.8.0', 'console_scripts', 'easy_install')()
)