# chess_engine/__init__.py """ Chess Engine with Stockfish Integration A Python chess engine with Stockfish integration, providing both a command-line interface and a REST API. """ __version__ = "0.1.0" from chess_engine.board import ChessBoard from chess_engine.pieces import ChessPiece, PieceManager