38ccd77ebc
EasyAI is a pure-Python artificial intelligence framework for two-players abstract games such as Tic Tac Toe, Connect 4, Reversi, etc. It makes it easy to define the mechanisms of a game, and play against the computer or solve the game. Under the hood, the AI is a Negamax algorithm with alpha-beta pruning and transposition tables.
17 lines
494 B
Makefile
17 lines
494 B
Makefile
# $NetBSD: Makefile,v 1.1 2014/08/09 22:26:50 wiz Exp $
|
|
|
|
DISTNAME= easyAI-0.0.0.4
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= games
|
|
MASTER_SITES= https://pypi.python.org/packages/source/e/easyAI/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://pypi.python.org/pypi/easyAI
|
|
COMMENT= Easy-to-use game AI algorithms
|
|
LICENSE= mit
|
|
|
|
USE_LANGUAGES= # none
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 33 34 # not yet ported as of 0.0.0.4
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|