Poetry update

This commit is contained in:
Chris Proctor
2025-01-13 21:57:04 -05:00
parent 1d97a0df20
commit daa8e5947a
2 changed files with 27 additions and 19 deletions

View File

@@ -1,16 +1,19 @@
[tool.poetry]
[project]
name = "lab-dice"
version = "0.1.0"
description = ""
authors = ["Chris Proctor <chris@chrisproctor.net>"]
authors = [
{name = "Chris Proctor",email = "chris@chrisproctor.net"}
]
license = {text = "MIT"}
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.6"
tqdm = "^4.66.1"
requires-python = ">=3.10,<4.0"
dependencies = [
"click (>=8.1.8,<9.0.0)",
"tqdm (>=4.67.1,<5.0.0)"
]
[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"