millwright 0.1.0

A unified ML framework for Rust — proven Rust crates, assembled into one machine.
Documentation
[build-system]

requires = ["maturin>=1.0,<2.0"]

build-backend = "maturin"



[project]

name = "millwright"

version = "0.1.0"

description = "A unified ML framework for Rust — Python bindings over the Rust core."

readme = "README.md"

requires-python = ">=3.9"

license = { text = "MIT" }

keywords = ["machine-learning", "ml", "pipeline", "rust"]

classifiers = [

    "Programming Language :: Rust",

    "Programming Language :: Python :: 3",

    "Intended Audience :: Science/Research",

]



[project.urls]

Homepage = "https://millwright-rs.dev/"

Repository = "https://github.com/mi7plus/millwright"



[tool.maturin]

# Build the pyo3 extension behind the `python` feature; the module is `millwright`.

features = ["python"]

module-name = "millwright"