diff options
author | ttt | 2017-05-13 00:29:47 +0530 |
---|---|---|
committer | ttt | 2017-05-13 00:29:47 +0530 |
commit | 4336f5f06f61de30ae3fa54650fce63a9d5ef5be (patch) | |
tree | 23b4ee9b8e8f24bf732acf2f7ad22ed50cdd5670 /bin/easy_install | |
download | SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.gz SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.bz2 SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.zip |
added all server files
Diffstat (limited to 'bin/easy_install')
-rw-r--r-- | bin/easy_install | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/easy_install b/bin/easy_install new file mode 100644 index 0000000..e5e46fa --- /dev/null +++ b/bin/easy_install @@ -0,0 +1,10 @@ +#!/home/vlabs/sbhs_vlabs/sbhs/bin/python +# EASY-INSTALL-ENTRY-SCRIPT: 'distribute==0.6.24','console_scripts','easy_install' +__requires__ = 'distribute==0.6.24' +import sys +from pkg_resources import load_entry_point + +if __name__ == '__main__': + sys.exit( + load_entry_point('distribute==0.6.24', 'console_scripts', 'easy_install')() + ) |