initial commit

This commit is contained in:
Chris Proctor
2026-03-09 12:28:21 -04:00
commit 039a467a9f
13 changed files with 841 additions and 0 deletions

24
pyproject.toml Normal file
View File

@@ -0,0 +1,24 @@
[project]
name = "lab-embeddings"
version = "0.1.0"
description = "Embeddings lab as part of MWC"
requires-python = ">=3.13"
dependencies = [
"click>=8.3.1",
"gensim",
"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"
wp = "wordplay.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["tlm", "wordplay"]