#!/usr/bin/env python
'''
    pave - (C) 2012 Mike Miller.
    Yet another config and deployment tool, leveraging fabric.
    license: GNU GPL v3
'''
import sys
from pave.main import setup, main


sys.exit(
    main(*setup())
)
