Files
rerun-io--rerun/examples/python/live_depth_sensor/pyproject.toml
T
2026-07-13 13:05:14 +08:00

22 lines
432 B
TOML

[project]
name = "live_depth_sensor"
version = "0.1.0"
requires-python = "<3.11"
readme = "README.md"
dependencies = [
"numpy",
"pyrealsense2-mac; sys_platform == 'darwin'",
"pyrealsense2; sys_platform != 'darwin'",
"rerun-sdk",
]
[project.scripts]
live_depth_sensor = "live_depth_sensor:main"
[tool.rerun-example]
skip = true # requires hardware
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"