commit 8cf0854e8c1b99cc9c98af61dba3cbfb56dc46cf Author: Chris Proctor Date: Fri Jul 7 14:31:07 2023 -0400 Initial commit diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f491755 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "problemset-drawing" +version = "0.1.0" +description = "" +authors = ["Chris Proctor "] +readme = "README.md" +packages = [{include = "problemset_drawing"}] + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"