From c7ecd98e1b4042c2a546748cbeeeb2ff0afe561d Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 28 Apr 2026 20:00:49 +0100 Subject: [PATCH] chore(config): update pyproject.toml with project description and requirements - Add [tool.poetry] section with package-mode=false. - Update project description. - Change requires-python from "^3.14" to ">=3.11". - Minor formatting in authors. --- pyproject.toml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 71b9950..7c82483 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,11 +1,14 @@ +[tool.poetry] +package-mode = false + [project] name = "nerdletter" version = "0.1.0" -description = "" +description = "A simple tool for encrypting/decrypting messages using a one-time pad." authors = [ - {name = "Gregory Gauthier",email = "gregory.gauthier@perspectum.com"} + {name = "Gregory Gauthier", email = "gregory.gauthier@perspectum.com"} ] -requires-python = "^3.14" +requires-python = ">=3.11" dependencies = [ ]