From 40407fd5943060571da3051d79d46e1be953c664 Mon Sep 17 00:00:00 2001 From: Lucien Bickerstaff Date: Mon, 24 Feb 2025 12:37:18 +0100 Subject: [PATCH 1/2] added project .toml file --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a932e3c --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,10 @@ +[project] +name = "tictactoe" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "numpy>=2.2.3", + "pyxel>=2.3.6", +] From 5fae0e2e78c6bee090aa43f7fd2947adf7889590 Mon Sep 17 00:00:00 2001 From: Lucien Bickerstaff Date: Mon, 24 Feb 2025 12:41:13 +0100 Subject: [PATCH 2/2] update readme --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 950aef0..fd9e0bf 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,12 @@ This contains a game called "Tic Tac Toe", also known as "Naughts and Crosses". ## Setup -(Instructions Here) +### Using uv + +Open a terminal console +Move to the tic-tac-toe directory +Run `uv sync` +The dependencies should then be installed. ## Running the App