31 lines
1.0 KiB
TOML
31 lines
1.0 KiB
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "pdf-inspector"
|
|
# Bump this to publish to PyPI — CI publishes automatically when the version
|
|
# changes on main (same flow as bindings/node/package.json for npm).
|
|
version = "0.2.5"
|
|
description = "Fast PDF inspection, classification, and text extraction with smart scanned vs text-based detection"
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Topic :: Text Processing",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/firecrawl/pdf-inspector"
|
|
Repository = "https://github.com/firecrawl/pdf-inspector"
|
|
Documentation = "https://github.com/firecrawl/pdf-inspector/blob/main/bindings/python/README.md"
|
|
|
|
[tool.maturin]
|
|
bindings = "pyo3"
|
|
module-name = "pdf_inspector"
|