Initial commit

This commit is contained in:
2026-02-23 19:31:19 +00:00
commit 3b7e78088f
11 changed files with 484 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "lab-language-model"
version = "5.0.0"
description = ""
requires-python = ">=3.10,<4.0"
dependencies = [
"click>=8.3.1",
"nltk>=3.9.2",
"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"]