diff options
author | rahulp13 | 2020-03-17 14:55:41 +0530 |
---|---|---|
committer | rahulp13 | 2020-03-17 14:55:41 +0530 |
commit | 296443137f4288cb030e92859ccfbe3204bc1088 (patch) | |
tree | ca4798c2da1e7244edc3bc108d81b462b537aea2 /bin/easy_install-script.py | |
parent | 0db48f6533517ecebfd9f0693f89deca28408b76 (diff) | |
download | KiCad-eSim-296443137f4288cb030e92859ccfbe3204bc1088.tar.gz KiCad-eSim-296443137f4288cb030e92859ccfbe3204bc1088.tar.bz2 KiCad-eSim-296443137f4288cb030e92859ccfbe3204bc1088.zip |
initial commit
Diffstat (limited to 'bin/easy_install-script.py')
-rw-r--r-- | bin/easy_install-script.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/easy_install-script.py b/bin/easy_install-script.py new file mode 100644 index 0000000..e91f11c --- /dev/null +++ b/bin/easy_install-script.py @@ -0,0 +1,12 @@ +#!python.exe +# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==36.0.1.post20170616','console_scripts','easy_install' +__requires__ = 'setuptools==36.0.1.post20170616' +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==36.0.1.post20170616', 'console_scripts', 'easy_install')() + ) |