This commit is contained in:
Chris Proctor 2025-01-13 19:33:21 -05:00
parent e98ce86f84
commit 3e478b12be
2 changed files with 16 additions and 6 deletions

7
poetry.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Poetry 2.0.0 and should not be changed by hand.
package = []
[metadata]
lock-version = "2.1"
python-versions = ">=3.10"
content-hash = "b08227dc5674045d1a6b5ab20f461c6a08d2d9bdfd724891aceb1a0c2b3614b1"

View File

@ -1,14 +1,17 @@
[tool.poetry]
[project]
name = "lab-names"
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"
requires-python = ">=3.10"
dependencies = [
]
[build-system]
requires = ["poetry-core"]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"