Spaces:
Running
Running
File size: 615 Bytes
090dddd a33a001 090dddd a33a001 090dddd a33a001 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
[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"]
|