#!/usr/bin/env python3
"""
Usage:
  madeira-deploy [ --debug ] [ --mode=mode ]
  madeira-deploy --help

Options:
  -h --help                        Show this help screen.
  --debug                          When specified, enables debug-level logging
  --mode=mode                      'test' or 'production' [default: test]
  --trace-boto3                    When specified, enables a "spew" of boto3 logging
"""

import docopt
from madeira_tools import tools

arguments = docopt.docopt(__doc__, help=True)
tools.Tools(arguments).deploy()
