You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- [build-system]
- requires = ["maturin>=0.13.2"]
- build-backend = "maturin"
-
- [project]
- name = "dora-rs"
- dynamic = ["version"]
- # Install pyarrow at the same time of dora-rs
- requires-python = ">=3.7"
- license = { text = "MIT" }
- readme = "README.md"
- dependencies = ['pyarrow']
-
- [dependency-groups]
- dev = ["pytest >=8.1.1", "ruff >=0.9.1"]
-
- [tool.maturin]
- features = ["pyo3/extension-module"]
-
- [tool.ruff.lint]
- extend-select = [
- "D", # pydocstyle
- "UP"
- ]
|