commit dd6419340cab1deabf33a190839c020b025174f0 Author: Chris Proctor Date: Fri Jun 2 13:19:26 2023 -0400 Initial commit diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..476324a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "project-drawing" +version = "0.1.0" +description = "" +authors = ["Chris Proctor "] +readme = "README.md" +packages = [{include = "project_drawing"}] + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"