Spaces:
Sleeping
Sleeping
File size: 318 Bytes
100a6dd | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # 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 |