ambers 0.1.5

Pure Rust reader for SPSS .sav and .zsav files
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "ambers"
version = "0.1.5"
description = "Pure Rust SPSS .sav/.zsav reader with Polars DataFrame output"
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
    "polars>=1.0",
    "pyarrow>=14.0",
]

[tool.maturin]
module-name = "ambers._ambers"
python-source = "python"
features = ["python"]

[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"