From 68df54d6629ec019142eb149dd037774f2d11e7c Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Tue, 11 Dec 2018 15:31:23 +0530 Subject: First commit --- venv/bin/easy_install | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 venv/bin/easy_install (limited to 'venv/bin/easy_install') 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 @@ +#!/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')() + ) -- cgit v1.2.3