rustpy-ml 0.1.0

A Rust library for seamless Python integration, enabling ML workflows with type safety
Documentation
[package]
name = "rustpy-ml"
version = "0.1.0"
edition = "2021"
description = "A Rust library for seamless Python integration, enabling ML workflows with type safety"
authors = ["CHAN, Hin Chung <chanhinchung334@gmail.com>"]
license = "Apache-2.0"
repository = "https://github.com/amoschanGH/rustpy"
keywords = ["python", "machine-learning", "ml", "pyo3", "integration"]
categories = ["development-tools", "science"]

[lib]
name = "rustpy_ml"

[dependencies]
pyo3 = { version = "0.23", features = ["auto-initialize", "anyhow"] }
anyhow = "1.0"
once_cell = "1.19"
thiserror = "2.0"
inventory = "0.3"

[dev-dependencies]
tokio = { version = "1", features = ["full"] }

[features]
default = []
numpy = []
ml = ["numpy"]