From 3e478b12be3225f9ba30e4da184743bad31edccd Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Mon, 13 Jan 2025 19:33:21 -0500 Subject: [PATCH] Poetry 2 --- poetry.lock | 7 +++++++ pyproject.toml | 15 +++++++++------ 2 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 poetry.lock diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..02d53ef --- /dev/null +++ b/poetry.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Poetry 2.0.0 and should not be changed by hand. +package = [] + +[metadata] +lock-version = "2.1" +python-versions = ">=3.10" +content-hash = "b08227dc5674045d1a6b5ab20f461c6a08d2d9bdfd724891aceb1a0c2b3614b1" diff --git a/pyproject.toml b/pyproject.toml index 6677c20..a9e5be7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,17 @@ -[tool.poetry] +[project] name = "lab-names" version = "0.1.0" description = "" -authors = ["Chris Proctor "] +authors = [ + {name = "Chris Proctor",email = "chris@chrisproctor.net"} +] +license = {text = "MIT"} readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.10" +requires-python = ">=3.10" +dependencies = [ +] [build-system] -requires = ["poetry-core"] +requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api"