From 707827f09bb64e1c0aeade193fbace7dfb7ea1a5 Mon Sep 17 00:00:00 2001 From: Brad Ganley Date: Thu, 2 Oct 2025 21:46:06 -0500 Subject: [PATCH] poetry init --- pyproject.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..bb20881 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,18 @@ +[project] +name = "cwbasetest" +version = "0.0.1" +description = "Tomfoolery abounds here" +authors = [ + {name = "Brad Ganley",email = "bg10k@tuta.io"} +] +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "pyconnectwise (>=0.6.1.2,<0.7.0.0)", + "dotenv (>=0.9.9,<0.10.0)" +] + + +[build-system] +requires = ["poetry-core>=2.0.0,<3.0.0"] +build-backend = "poetry.core.masonry.api"