Poetry update

This commit is contained in:
Chris Proctor
2025-01-13 21:58:19 -05:00
parent ca7f43b086
commit ba766d7183
2 changed files with 22 additions and 17 deletions

View File

@@ -1,14 +1,18 @@
[tool.poetry]
name = "lab_tic_tac_toe"
[project]
name = "lab-tic-tac-toe"
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,<4.0"
dependencies = [
"click (>=8.1.8,<9.0.0)"
]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"