Initial commit: CloudView generic networked point-cloud viewer
Standalone Open3D viewer that listens on a TCP/Unix socket and renders NDJSON point-cloud streams from any producer. Decoupled server/protocol/store layers (no Open3D dependency, testable headless) plus a lazy Open3D render loop. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
21
pyproject.toml
Normal file
21
pyproject.toml
Normal file
@@ -0,0 +1,21 @@
|
||||
[project]
|
||||
name = "cloudview"
|
||||
version = "0.1.0"
|
||||
description = "Generic networked point-cloud viewer (NDJSON over a stream socket)"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
# 3D point-cloud rendering with an interactive camera.
|
||||
"open3d>=0.18",
|
||||
"numpy>=1.23",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
cloudview = "cloudview.app:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["cloudview"]
|
||||
Reference in New Issue
Block a user