pyproject.toml named the distribution rustyhdf5 while the extension module is clawhdf5, and the package's tests imported rustyhdf5, so pytest failed at collection. Distribution, module-name and tests now agree; the module gains __version__. maturin develop + pytest: 28 pass. Co-Authored-By: Claude Opus 5.5 (1M context) <[email protected]>
30 lines
777 B
TOML
30 lines
777 B
TOML
[package]
|
|
name = "clawhdf5-py"
|
|
version = "2.7.0"
|
|
edition = "2024"
|
|
rust-version.workspace = true
|
|
description = "Python bindings for clawhdf5 — a pure-Rust HDF5 library"
|
|
license = "MIT"
|
|
repository = "https://git.redclaw.dev/quantumclaw/clawhdf5"
|
|
readme = "README.md"
|
|
keywords = ["hdf5", "python", "bindings", "science"]
|
|
categories = ["api-bindings", "science"]
|
|
|
|
[lib]
|
|
name = "clawhdf5"
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
clawhdf5_rs = { path = "../clawhdf5", version = "2.7.0", package = "clawhdf5" }
|
|
clawhdf5-format = { path = "../clawhdf5-format", version = "2.7.0" }
|
|
pyo3 = "0.29"
|
|
numpy = "0.29"
|
|
|
|
[features]
|
|
extension-module = ["pyo3/extension-module"]
|
|
|
|
[package.metadata.docs.rs]
|
|
features = []
|
|
no-default-features = true
|
|
targets = ["x86_64-unknown-linux-gnu"]
|