diff options
| author | Shubham Saini <shubham6405@gmail.com> | 2018-12-11 10:01:23 +0000 |
|---|---|---|
| committer | Shubham Saini <shubham6405@gmail.com> | 2018-12-11 10:01:23 +0000 |
| commit | 68df54d6629ec019142eb149dd037774f2d11e7c (patch) | |
| tree | 345bc22d46b4e01a4ba8303b94278952a4ed2b9e /venv/bin/easy_install | |
First commit
Diffstat (limited to 'venv/bin/easy_install')
| -rwxr-xr-x | venv/bin/easy_install | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/venv/bin/easy_install b/venv/bin/easy_install new file mode 100755 index 0000000..136abd1 --- /dev/null +++ b/venv/bin/easy_install | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | #!/home/a9o9/PycharmProjects/network_scanner/venv/bin/python | ||
| 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==39.1.0','console_scripts','easy_install' | ||
| 3 | __requires__ = 'setuptools==39.1.0' | ||
| 4 | import re | ||
| 5 | import sys | ||
| 6 | from pkg_resources import load_entry_point | ||
| 7 | |||
| 8 | if __name__ == '__main__': | ||
| 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) | ||
| 10 | sys.exit( | ||
| 11 | load_entry_point('setuptools==39.1.0', 'console_scripts', 'easy_install')() | ||
| 12 | ) | ||
