First version of lab_matrices

This commit is contained in:
cplockport
2026-03-02 12:29:18 -05:00
commit 8482cb6db5
12 changed files with 593 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[project]
name = "lab-embedding"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.13"
dependencies = [
"click>=8.3.1",
"nltk>=3.9.3",
"numpy",
"tabulate>=0.9.0",
"tqdm>=4.67.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
tlm = "tlm.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["tlm"]