PyPI showed an empty description because pyproject.toml declared no readme. Point it at docs/python.md (refreshed with pip install now that wheels exist) and add sidebar URLs. Bump to 0.2.2 to republish. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
30 lines
998 B
TOML
30 lines
998 B
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 napi/package.json for npm).
|
|
version = "0.2.2"
|
|
description = "Fast PDF inspection, classification, and text extraction with smart scanned vs text-based detection"
|
|
readme = "docs/python.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/docs/python.md"
|
|
|
|
[tool.maturin]
|
|
features = ["python"]
|