From 77f014914c671ad27654be84b5480fb3101412b9 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 8 Nov 2025 09:13:11 +0000 Subject: [PATCH] Add pyproject.toml --- pyproject.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..3c81f5b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,13 @@ +# pyproject.toml +[project] +name = "connectfour" +version = "0.1.0" +description = "Classic Connect Four game environment built for TextArena." +dependencies = [ + "textarena>=0.7.3", # core framework +] + +[openverse] +entry_point = "env:ConnectFourEnv" +tags = ["2-player", "logic", "reasoning"] +author = "bobbycxy"