#!/storage/current_dev/nsight/venv/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'nsight==0.0.1','console_scripts','nsight'
__requires__ = 'nsight==0.0.1'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('nsight==0.0.1', 'console_scripts', 'nsight')()
    )
