Spaces:
Running
Running
File size: 607 Bytes
bea964e |
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 |
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "smoldocling"
version = "0.1.0"
description = "CLI tool for processing document images using Smoldocling"
authors = [
{name = "Your Name", email = "[email protected]"},
]
dependencies = [
"docling-core",
"Pillow>=10.0.0",
"pdf2image>=1.16.3",
"mcp[cli]>=1.7.0",
"fastapi[standard]>=0.115.12",
"torch>=2.7.0",
"openai>=1.78.1",
]
requires-python = ">=3.10"
[project.scripts]
smoldocling = "smoldocling.cli:main"
[tool.setuptools]
packages = ["smoldocling"]
|