Python bindings to oxyroot. Makes reading .root files blazing fast 馃殌
1[build-system]
2requires = ["maturin>=1.9,<2.0"]
3build-backend = "maturin"
4
5[project]
6name = "py-oxyroot"
7requires-python = ">=3.8"
8classifiers = [
9 "Programming Language :: Rust",
10 "Programming Language :: Python :: Implementation :: CPython",
11 "Programming Language :: Python :: Implementation :: PyPy",
12]
13dynamic = ["version"]
14[project.optional-dependencies]
15tests = [
16 "pytest",
17]
18[tool.maturin]
19python-source = "python"
20features = ["pyo3/extension-module"]