This commit is contained in:
Chris Proctor
2025-01-13 19:32:05 -05:00
parent 903c58a4b4
commit 7d2652e7cc
2 changed files with 22 additions and 16 deletions

View File

@@ -1,15 +1,19 @@
[tool.poetry]
name = "lab_terminal"
[project]
name = "lab-terminal"
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 = [
"click (>=8.1.8,<9.0.0)",
"colorama (>=0.4.6,<0.5.0)"
]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.4"
colorama = "^0.4.6"
[build-system]
requires = ["poetry-core>=1.0.0"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"