[console_scripts]
zero_play = zero_play.zero_play:main

[gui_scripts]
zero_play_gui = zero_play.zero_play_gui:main

[zero_play.game]
connect4 = zero_play.connect4.game:Connect4Game
othello = zero_play.othello.game:OthelloGame
tictactoe = zero_play.tictactoe.game:TicTacToeGame

[zero_play.game_display]
connect4 = zero_play.connect4.display:Connect4Display
othello = zero_play.othello.display:OthelloDisplay
tictactoe = zero_play.tictactoe.display:TicTacToeDisplay

[zero_play.heuristic]
connect4 = zero_play.connect4.neural_net:NeuralNet
playout = zero_play.playout:Playout

[zero_play.player]
human = zero_play.human_player:HumanPlayer
mcts = zero_play.mcts_player:MctsPlayer

