From 94be82f501e4779ce3f51aafb75845a5ec6118ee Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Mon, 13 Jan 2025 17:56:47 -0500 Subject: [PATCH] Add pyproject --- pyproject.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..922dd31 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[project] +name = "quicksheet-information" +version = "0.1.0" +description = "" +authors = [ + {name = "Chris Proctor",email = "chris@chrisproctor.net"} +] +readme = "README.md" +requires-python = ">=3.10" +dependencies = [ +] + + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api"