#! /usr/bin/env python

"""
Installs or updates the webpages for the dynamo-consistency.

``dynamo-consistency`` automatically installs the webpages for you
if they don't exist during its first run.
However, it will never update the webpage once it's there.
"""

__usage__ = '%prog [options]'

from dynamo_consistency import summary
from dynamo_consistency.parser import pretty_exe

pretty_exe('consistency-web-install')

if __name__ == '__main__':
    summary.install_webpage()
