14 lines
308 B
TOML
14 lines
308 B
TOML
|
|
# 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"
|