Files
2026-08-27 20:08:08 +01:00

20 lines
584 B
TOML

# The wheel version: pyproject.toml reads `version` from here (maturin's
# dynamic version), so bump it together with the workspace release version.
[package]
name = "anydoc-python"
version = "0.2.4"
edition = "2024"
description = "Python bindings for anydoc"
license = "MIT"
repository = "https://github.com/firecrawl/anydoc"
publish = false
[lib]
crate-type = ["cdylib"]
[dependencies]
anydoc = { path = ".." }
# abi3-py310 pins the stable ABI: one wheel per platform covers every
# CPython from 3.10 up.
pyo3 = { version = "0.29", features = ["abi3-py310", "extension-module"] }