|
- [build-system]
- requires = ["maturin>=0.13.2"]
- build-backend = "maturin"
-
- [project]
- name = "dora-rerun"
- dynamic = ["version"]
- license = { text = "MIT" }
- requires-python = ">=3.8"
-
- dependencies = [
- 'rerun_sdk==0.22.0',
- # "rerun-loader-urdf @ git+https://github.com/rerun-io/rerun-loader-python-example-urdf.git",
- ]
-
- scripts = { "dora-rerun" = "dora_rerun:py_main" }
-
- [tool.maturin]
- features = ["python", "pyo3/extension-module"]
-
- [tool.ruff.lint]
- extend-select = [
- "D", # pydocstyle
- "UP", # Ruff's UP rule
- "PERF", # Ruff's PERF rule
- "RET", # Ruff's RET rule
- "RSE", # Ruff's RSE rule
- "NPY", # Ruff's NPY rule
- "N", # Ruff's N rule
- "I", # Ruff's I rule
- ]
|