commit 6145f70c9508bc55c90cd8ba1e103a0aac37ead7 Author: cchung Date: Fri Aug 25 14:34:58 2023 +0000 Initial commit diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..1e94b25 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "project-game" +version = "0.1.0" +description = "" +authors = ["Chris Proctor "] +readme = "README.md" +packages = [{include = "project_game"}] + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"