Python bindings to oxyroot. Makes reading .root files blazing fast 馃殌
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 3fc98f89850cfde95838f19eb5d418acbaa10189 20 lines 473 B view raw
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"]