summaryrefslogtreecommitdiff
path: root/venv/bin/easy_install
blob: 136abd194b3f56d3ee6bd19cc8ea04ff4c62e28b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/home/a9o9/PycharmProjects/network_scanner/venv/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==39.1.0','console_scripts','easy_install'
__requires__ = 'setuptools==39.1.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==39.1.0', 'console_scripts', 'easy_install')()
    )