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.

pyproject.toml 455 B

10 months ago
10 months ago
123456789101112131415161718192021222324
  1. [build-system]
  2. requires = ["maturin>=0.13.2"]
  3. build-backend = "maturin"
  4. [project]
  5. name = "dora-rs"
  6. dynamic = ["version"]
  7. # Install pyarrow at the same time of dora-rs
  8. requires-python = ">=3.7"
  9. license = { text = "MIT" }
  10. readme = "README.md"
  11. dependencies = ['pyarrow']
  12. [dependency-groups]
  13. dev = ["pytest >=7.1.1", "ruff >=0.9.1"]
  14. [tool.maturin]
  15. features = ["pyo3/extension-module"]
  16. [tool.ruff.lint]
  17. extend-select = [
  18. "D", # pydocstyle
  19. "UP",
  20. ]