CoolFace
Apppublic

VTdevelops/bond-text-extraction

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
pyproject.toml24 linesDownload Raw Back to root
1[tool.poetry]2name = "text-extraction"3version = "0.1.0"4description = ""5authors = ["VTdevelops <117118443+VTdevelops@users.noreply.github.com>"]6readme = "README.md"7packages = [{ include = "text_extraction" }]8 9[tool.poetry.dependencies]10python = ">=3.10,<3.13"11gradio = "^4.44.0"12openai = "^2.7.1"13pypdf = "^6.2.0"14lxml = "^5.3.0"15python-dotenv = "^1.0.1"16 17 18[build-system]19requires = ["poetry-core"]20build-backend = "poetry.core.masonry.api"21 22[tool.poetry.scripts]23text-extraction = "text_extraction.cli:main"24