#!/usr/bin/env python
# coding=utf-8

"""
elzzur solves a Ruzzle board, listing all the valid words with their scores.

This is the main elzzur script, intended to be run from command line.
"""

from __future__ import absolute_import

from elzzur import main as package_main

__author__ = "Alberto Pettarin"
__copyright__ = "Copyright 2016, Alberto Pettarin (www.albertopettarin.it)"
__license__ = "MIT"
__version__ = "0.0.1"
__email__ = "alberto@albertopettarin.it"
__status__ = "Production"

def main():
    package_main()


if __name__ == '__main__':
    main()



