configured lichess bot to use our bayesian mcts with Stockfish strategy

This commit is contained in:
2024-01-31 23:32:45 +01:00
parent c4d56f52a4
commit 92d06bd2a0
2 changed files with 43 additions and 6 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chess-pp"
version = "0.1"
dependencies = [
"chess==1.10.0",
"numpy==1.26.3",
"stockfish==3.28.0",
"torch==2.1.2",
"pytest==8.0.0",
"aiohttp==3.9.2",
"scipy==1.12.0"
]
requires-python = ">= 3.10"
[tool.setuptools]
py-modules = ["chesspp"]