From b95753c8dc192481e8d4ae2551e259b0c70bfb67 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Mon, 13 Jan 2025 19:30:20 -0500 Subject: [PATCH] Poetry 2 --- poetry.lock | 8 ++++---- pyproject.toml | 18 +++++++++++------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/poetry.lock b/poetry.lock index 7241cfd..02d53ef 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,7 +1,7 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 2.0.0 and should not be changed by hand. package = [] [metadata] -lock-version = "2.0" -python-versions = "^3.10" -content-hash = "17ca553b0bb9298a6ed528dd21e544ca433179192dba32a9920168e1c199d74f" +lock-version = "2.1" +python-versions = ">=3.10" +content-hash = "b08227dc5674045d1a6b5ab20f461c6a08d2d9bdfd724891aceb1a0c2b3614b1" diff --git a/pyproject.toml b/pyproject.toml index 313f33b..59aceef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,17 @@ -[tool.poetry] -name = "lab_turtle" +[project] +name = "lab-turtle" version = "0.1.0" description = "" -authors = ["Chris Proctor "] -license = "MIT" +authors = [ + {name = "Chris Proctor",email = "chris@chrisproctor.net"} +] +license = {text = "MIT"} +readme = "README.md" +requires-python = ">=3.10" +dependencies = [ +] -[tool.poetry.dependencies] -python = "^3.10" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=2.0.0,<3.0.0"] build-backend = "poetry.core.masonry.api"