From ab1a34ed552372c6619479ba768991c6283f8686 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Mon, 13 Jan 2025 21:53:00 -0500 Subject: [PATCH] Poetry update --- poetry.lock | 7 ------- pyproject.toml | 17 +++++++++-------- 2 files changed, 9 insertions(+), 15 deletions(-) delete mode 100644 poetry.lock diff --git a/poetry.lock b/poetry.lock deleted file mode 100644 index ddb1526..0000000 --- a/poetry.lock +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. -package = [] - -[metadata] -lock-version = "2.0" -python-versions = "^3.10" -content-hash = "53f2eabc9c26446fbcc00d348c47878e118afc2054778c3c803a0a8028af27d9" diff --git a/pyproject.toml b/pyproject.toml index 3151661..c4745b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,16 +1,17 @@ -[tool.poetry] +[project] name = "problemset-numberwords" version = "0.1.0" description = "" -authors = ["Chris Proctor "] +authors = [ + {name = "Chris Proctor",email = "chris@chrisproctor.net"} +] +license = {text = "MIT"} readme = "README.md" +requires-python = ">=3.10,<4.0" +dependencies = [ +] -[tool.poetry.dependencies] -python = "^3.10" [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api" - -[tool.poetry.scripts] -numwords = "cli:cli"