#!/usr/bin/env python

"""
FrogstarB, the Command Line Script
==================================

This is the command line script for FrogstarB.

## Usage

  frogstarb -p post.markdown

Run `frogstarb --help` to see more options.

## Author and License

Created by [Jonhnny Weslley](http://jonhnnyweslley.net).

Contact: jw [at] jonhnnyweslley.net

Copyright 2010 Jonhnny Weslley

License: MIT License (see COPYING for details)
"""

from frogstarb import commandline

if __name__ == '__main__':
  commandline.run()
