22 lines
481 B
TOML
22 lines
481 B
TOML
[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"]
|