[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "coren"
version = "0.1.5"
description = "Machine capability detection and compute normalization"
requires-python = ">=3.9"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["compute", "roofline", "benchmark", "normalization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"Topic :: System :: Hardware",
"Topic :: Scientific/Engineering",
]
dependencies = [
"ziglang>=0.15.2",
]
[project.urls]
Repository = "https://codeberg.org/cablab/coren"
[tool.maturin]
features = ["python"]
strip = true
sdist-include = ["src/**", "Cargo.toml", "Cargo.lock", "README.md"]
[tool.uv]
python-preference = "only-managed"
[dependency-groups]
dev = [
"bump-my-version>=1.2.7",
"maturin>=1.12.6",
"twine>=6.2.0",
]