reducers 0.3.0

Rust-backed reductions for NumPy arrays (plain + NaN-aware)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! PyO3 bindings exposed as `reducers._core`. Compiled only with the `python`
//! feature.

use pyo3::prelude::*;

mod reducers;

pub(crate) fn register(m: &Bound<'_, PyModule>) -> PyResult<()> {
    reducers::register(m)?;
    m.add("__version__", env!("CARGO_PKG_VERSION"))?;
    Ok(())
}