This commit is contained in:
Chris Proctor
2025-01-13 19:30:20 -05:00
parent 15bc3fe6d6
commit b95753c8dc
2 changed files with 15 additions and 11 deletions

View File

@@ -1,13 +1,17 @@
[tool.poetry]
name = "lab_turtle"
[project]
name = "lab-turtle"
version = "0.1.0"
description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"]
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"