las_rs 0.2.1

High-performance parser and writer for LAS (Log ASCII Standard) well-log files — LAS 1.2 / 2.0 / 3.0. Pure-Rust core; the optional `python` feature adds the PyO3 bindings that back the `las-rs` PyPI wheel.
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "las-rs"
dynamic = ["version"]
requires-python = ">=3.10"
description = "High-performance LAS file parser and writer for Python, written in Rust"
readme = "README.md"
license = "MIT"
keywords = ["las", "well-log", "geoscience", "petroleum", "parsing"]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: MIT License",
    "Programming Language :: Rust",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Topic :: Scientific/Engineering",
]
dependencies = ["numpy"]

[project.urls]
Repository = "https://github.com/kkollsga/las-rs"

[project.optional-dependencies]
dev = ["pytest", "pandas"]

[tool.maturin]
# extension-module is enabled here (not as a Cargo default) so `cargo test`
# can still link a normal binary. The wheel build turns both features on.
features = ["python", "extension-module"]
python-source = "python"
module-name = "las_rs._native"