CoolFace
Apppublic

electblake/image-data-extractor

sourceHugging Faceupdated 2mo agoView on Hugging Face
1likes
pyproject.toml36 linesDownload Raw Back to root
1[project]2name = "image-data-extractor"3version = "0.1.0"4description = "Extract structured data from document images with NuExtract3"5readme = "README.md"6requires-python = ">=3.12,<3.13"7dependencies = [8    "gradio==6.20.0",9    "pillow==12.3.0",10    "spaces==0.51.1",11    "torch==2.11.0",12    "torchvision==0.26.0",13    "transformers==5.14.1",14]15 16[dependency-groups]17dev = [18    "ruff>=0.15.22",19]20 21[tool.ruff]22target-version = "py312"23extend-exclude = ["notebooks"]24 25[tool.ruff.lint]26select = ["B", "E4", "E7", "E9", "F", "I", "SIM", "UP"]27 28[tool.uv.sources]29torch = { index = "pytorch-cu130" }30torchvision = { index = "pytorch-cu130" }31 32[[tool.uv.index]]33name = "pytorch-cu130"34url = "https://download.pytorch.org/whl/cu130"35explicit = true36