circulant-rs 1.0.0

High-performance block-circulant tensor operations using FFT
Documentation
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"

[project]
name = "circulant-rs"
version = "0.2.2"
description = "High-performance block-circulant matrix operations for quantum walks and signal processing"
readme = "README.md"
license = { text = "MIT OR Apache-2.0" }
requires-python = ">=3.8"
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Science/Research",
    "License :: OSI Approved :: MIT License",
    "License :: OSI Approved :: Apache Software License",
    "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 :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Topic :: Scientific/Engineering :: Physics",
    "Topic :: Scientific/Engineering :: Mathematics",
]
keywords = ["circulant", "matrix", "fft", "quantum", "walk", "physics"]

[project.optional-dependencies]
test = ["pytest", "numpy"]

[tool.maturin]
features = ["python"]
python-source = "python"
module-name = "circulant_rs"