#!/usr/bin/python3

#(c) 2013-2014 by Authors
#This file is a part of Ragout program.
#Released under the BSD license (see LICENSE file)

"""
This script does all the necessary preparations
and invokes Ragout
"""

import os
import sys

#Ragout entry point
from ragout.main import main
sys.exit(main())
