qubed/tree_compresser/pyproject.toml
2025-02-12 11:06:27 +00:00

37 lines
777 B
TOML

[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "tree_traverser"
description = "Tools to work with compressed Datacubes and Trees"
readme = "README.md"
authors = [
{name = "Tom Hodson", email = "thomas.hodson@ecmwf.int"},
]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">= 3.11"
dynamic = ["version"]
dependencies = [
"pe"
]
[tool.maturin]
python-source = "python_src"
module-name = "tree_traverser.rust"
features = ["pyo3/extension-module"]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-rtd-theme",
"myst-parser",
"sphinx-autobuild"
]