variants_ner / pyproject.toml
enoriega's picture
Refactor code structure for improved readability and maintainability. Added Gilda grounding
8d84652
raw
history blame contribute delete
500 Bytes
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "ner-ui"
version = "0.1.0"
description = "Pure Gradio demo for Hugging Face NER models"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"gilda>=1.0.0",
"gradio==5.25.2",
"huggingface-hub>=0.31.1",
"requests>=2.32.0",
"torch>=2.7.0",
"transformers>=4.52.0",
]
[project.scripts]
ner-ui = "app:main"
[tool.setuptools]
py-modules = ["app", "gilda_pipeline"]