23 lines
401 B
TOML
23 lines
401 B
TOML
[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"]
|