Initial commit

This commit is contained in:
mwc
2026-02-09 12:15:12 -05:00
commit ce251fddbe
10 changed files with 410 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[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",
"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"]