Add details about the BytesSource cleanup bug fix and clarify that the contract defines 7 error kinds, not 8 as initially stated in the task. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "pdftract"
|
|
version = "0.1.0"
|
|
description = "PDF text extraction library with robust encoding detection"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = {text = "MIT OR Apache-2.0"}
|
|
keywords = ["pdf", "text-extraction", "encoding-detection"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Rust",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Text Processing :: Linguistic",
|
|
]
|
|
|
|
[tool.maturin]
|
|
features = ["pyo3/extension-module"]
|
|
# Strip symbols from the final wheel for smaller size
|
|
strip = true
|
|
# Use abi3 for forward compatibility across Python 3.11+
|
|
python-source = "python"
|