ner-annotation / pyproject.toml
nam pham
feat: improve ui/ux
a33a001
raw
history blame contribute delete
615 Bytes
[project]
name = "ner-annotation"
version = "0.1.0"
description = "A tool for annotating text with named entities using GLiNER models"
authors = [
{name = "Your Name", email = "[email protected]"}
]
dependencies = [
"gradio>=4.0.0",
"torch>=2.0.0",
"gliner>=0.1.0",
"huggingface-hub>=0.19.0",
"pandas>=2.0.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0"
]
requires-python = ">=3.8"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/ner_annotation"]