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

28 lines
642 B
TOML

[project]
name = "segment_anything_model"
version = "0.1.0"
readme = "README.md"
dependencies = [
"segment-anything @ git+https://github.com/facebookresearch/segment-anything.git",
"numpy",
"opencv-python",
"requests>=2.31,<3",
"rerun-sdk",
"torch", # this will use the version defined in the uv workspace
"torchvision", # this will use the version defined in the uv workspace
"tqdm",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.rerun-example]
# skip = true
[project.scripts]
segment_anything_model = "segment_anything_model:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"