Spaces:
Running
Running
File size: 906 Bytes
f87a697 | 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 29 30 31 32 33 34 35 36 37 38 | [build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["slm_document_parser"]
[project]
name = "slm-document-parser"
version = "0.1.0"
description = "A lightweight local CPU-optimized document structure and text parser agent via ONNX Runtime"
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"llm", "slm", "pdf", "docx", "markdown", "parser", "local-ai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
dependencies = [
"onnxruntime-genai>=0.2.0",
"huggingface_hub>=0.10.0",
"pyyaml",
"pypdf",
"python-docx",
"pypdfium2",
"openpyxl",
"python-pptx",
"olefile"
]
[[project.authors]]
name = "Suryaprakash CV"
email = "suryaprakash.c.v@gmail.com"
|