Metadata-Version: 1.1
Name: tictactoelib
Version: 0.2.4
Summary: Ultimate Tic Tac Toe game logic (Lua and Python bindings)
Home-page: http://github.com/Motiejus/ultimate-tic-tac-toe
Author: Motiejus Jakštys
Author-email: desired.mta@gmail.com
License: Apache2
Description: Game Logic for Ultimate Tic Tac Toe
        ===================================
        
        This library allows to easily create front-ends for ultimate-tic-tac-toe game.
        It takes care of game rules, validating the arguments, calling the right
        functions.
        
        ``run.lua`` is an example how this library can be used. To try out::
        
            tictactoelib/run.lua \
                tictactoelib/examples/dumb_player.lua \
                tictactoelib/examples/dumb_player.lua
        
        The file takes two arguments: Lua files, which implement a player.
        ``tictactoelib/examples/dumb_player.lua`` is a demo player which marks a first
        available slot.  Command-line example above makes it fight with itself.
        
        See comments in ``tictactoelib/examples/dumb_player.lua`` how to implement a
        player (it could also be something that takes events from UI).
        
        For human-readable game rules, see ultimate-tic-tac-toe's website_.
        
        Compatibility
        -------------
        
        Library is written in pure Lua, is tested to be compatible with Lua5.1, Lua5.2
        and luajit.
        
        .. _website: http://mathwithbaddrawings.com/2013/06/16/ultimate-tic-tac-toe/
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Other Scripting Engines
Classifier: Topic :: Games/Entertainment :: Board Games
