Refactor chesspp module with pyproject

This commit is contained in:
2024-01-27 21:36:46 +01:00
parent 69aa9ce2d9
commit c69b542653
12 changed files with 27 additions and 11 deletions

View File

@@ -1,11 +1,10 @@
import chess
import chess.engine
import chess.pgn
from chesspp.classic_mcts import ClassicMcts
from chesspp import engine
from chesspp import eval
from chesspp import util
from chesspp import simulation
from src.chesspp.classic_mcts import ClassicMcts
from src.chesspp import engine
from src.chesspp import util
from src.chesspp import simulation, eval
def test_simulate():