#!env python
#-----------------------------------------------------------------------------
# Copyright (c) 2013, NeXpy Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING, distributed with this software.
#-----------------------------------------------------------------------------

import matplotlib

def main():
    matplotlib.use('Qt4Agg')
    from nexpy.gui.consoleapp import NXConsoleApp
    app = NXConsoleApp()
    app.initialize()
    app.start()


if __name__ == '__main__':
    main()
