commit 764842d904d7569bc1972599b5bdf8dc61e4e8f6 Author: jcai Date: Fri Sep 13 19:46:15 2024 +0000 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..afe5940 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "project-game" +version = "0.1.0" +description = "" +authors = ["Chris Proctor "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.10" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"