sklears-python 0.1.0

Python bindings for sklears machine learning library using PyO3
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "sklears"
version = "0.1.0rc1"
description = "High-performance machine learning library with scikit-learn compatibility - Pure Rust implementation"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache-2.0" }
authors = [
    { name = "COOLJAPAN OU (Team Kitasan)" },
]
keywords = [
    "machine-learning",
    "scikit-learn",
    "rust",
    "pure-rust",
    "classification",
    "regression",
    "clustering",
]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: Apache Software License",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3.14",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Rust",
    "Topic :: Scientific/Engineering",
    "Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
    "numpy>=1.21",
]

[project.urls]
Homepage = "https://github.com/cool-japan/sklears"
Repository = "https://github.com/cool-japan/sklears"
Documentation = "https://github.com/cool-japan/sklears"
"Bug Tracker" = "https://github.com/cool-japan/sklears/issues"

[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "sklears._sklears"
python-source = "python"