scirs2-python 0.3.3

Python bindings for SciRS2 - A comprehensive scientific computing library in Rust (SciPy alternative)
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "scirs2"
version = "0.3.3"
description = "SciRS2: A comprehensive scientific computing library in Rust - Python bindings (SciPy alternative) with async support and pandas integration"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
keywords = ["scientific", "numpy", "scipy", "machine-learning", "statistics"]
authors = [
    { name = "COOLJAPAN OU", email = "contact@cooljapan.tech" }
]
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Science/Research",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: Apache Software License",
    "Programming Language :: Rust",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "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",
    "Topic :: Scientific/Engineering",
    "Topic :: Scientific/Engineering :: Mathematics",
    "Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
    "numpy>=1.20.0",
]

[project.optional-dependencies]
dev = [
    "pytest>=7.0",
    "pytest-asyncio>=0.21.0",  # For async tests
    "pandas>=1.0",
    "scipy>=1.7",  # For comparison benchmarks
]
pandas = [
    "pandas>=1.0",
]
async = [
    # No additional dependencies needed - tokio is bundled
]
all = [
    "pandas>=1.0",
    "pytest>=7.0",
    "pytest-asyncio>=0.21.0",
]

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

[tool.maturin]
# Enable default features to ensure all dependencies (including scirs2-core with random feature) are properly enabled
# This is crucial for the graph module which requires thread_rng from scirs2_core::random
features = ["pyo3/extension-module", "default"]
module-name = "scirs2"
include = ["scirs2.pyi"]

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"
addopts = "-v --tb=short"