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 554 B

9 months ago
1234567891011121314151617181920212223242526
  1. [build-system]
  2. requires = ["maturin>=0.13.2"]
  3. build-backend = "maturin"
  4. [project]
  5. name = "dora-dav1d"
  6. dynamic = ["version"]
  7. license = { text = "BSD-2-Clause" }
  8. requires-python = ">=3.8"
  9. scripts = { "dora-dav1d" = "dora_dav1d:py_main" }
  10. [tool.maturin]
  11. features = ["python", "pyo3/extension-module"]
  12. [tool.ruff.lint]
  13. extend-select = [
  14. "D", # pydocstyle
  15. "UP", # Ruff's UP rule
  16. "PERF", # Ruff's PERF rule
  17. "RET", # Ruff's RET rule
  18. "RSE", # Ruff's RSE rule
  19. "NPY", # Ruff's NPY rule
  20. "N", # Ruff's N rule
  21. "I", # Ruff's I rule
  22. ]