-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (43 loc) · 1.24 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "splat-viewer"
version = "0.21.0"
description = "A viewer for gaussian-splatting reconstructions"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
maintainers = [
{name = "Oliver Batchelor", email = "oliver.batchelor@canterbury.ac.nz" }
]
dependencies = [
"beartype",
"taichi-nightly>=1.8.0",
"taichi-splatting >= 0.21.2",
"tqdm",
"tensordict",
"plyfile",
"pyside6",
"natsort",
"opencv_python",
"pyrender",
"roma"
]
[options]
dependency_links = ["https://pypi.taichi.graphics/simple/"]
[project.urls]
"Homepage" = "https://github.com/uc-vision/splat-viewer"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.scripts] # Optional
splat-viewer = "splat_viewer.scripts.splat_viewer:main"
debug-tiles = "splat_viewer.scripts.debug_tiles:main"
label-foreground = "splat_viewer.scripts.label_foreground:main"
export-workspace = "splat_viewer.scripts.export_workspace:main"
export-rgb-cloud = "splat_viewer.scripts.export_rgb_cloud:main"
[tool.ruff]
indent-width = 2
[tool.pytest.ini_options]
filterwarnings = [
# disable "UserWarning: The .grad attribute of a Tensor that is not a leaf Tensor"
"ignore::UserWarning"
]