Files
TicTacToe-v0/pyproject.toml

14 lines
308 B
TOML
Raw Permalink Normal View History

2025-11-07 16:26:04 +08:00
# pyproject.toml
[project]
name = "tictactoe"
version = "0.1.0"
description = "Classic Tic-Tac-Toe game environment built for TextArena."
dependencies = [
"textarena>=0.7.3", # core framework
]
[openverse]
entry_point = "env:TicTacToeEnv"
tags = ["2-player", "logic", "reasoning"]
author = "bobbycxy"