#!/usr/bin/env python

# This python script is simply a wrapper for PCAViz.py so that when users
# install via pip, they they can simply type "pcaviz" from the command line.
# If you're not using pip, run something like "python PCAViz.py" instead.

from PCAViz import PCAViz
PCAViz.FROM_PIP = True
PCAViz.main()
