#!python

import sys
from takeoff.generator import Generator

arguments = sys.argv.copy()
arguments.pop(0)

g = Generator(arguments)
g.run()