#!/usr/bin/env python
# PYTHON_ARGCOMPLETE_OK
"""
lexor: Command Line Script
==========================

To see usage run "lexor -h".

"""

if __name__ == '__main__':
    from lexor.__main__ import run
    run()
