-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (78 loc) · 1.83 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (78 loc) · 1.83 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=61", "wheel", "torch", "ninja"]
build-backend = "setuptools.build_meta"
[project]
name = "friendly-splat"
version = "0.1.0"
description = "User-friendly Gaussian Splatting toolkit"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "FriendlySplat Authors" }]
dependencies = [
"numpy<2",
"ninja",
"torch",
"tyro>=0.8.8",
"PyYAML",
"rich>=12",
"tensorboard",
"tqdm",
"torchmetrics",
"typing_extensions>=4.4.0",
"imageio",
"Pillow",
"opencv-python",
]
[project.optional-dependencies]
train = [
"fused-ssim @ git+https://github.com/rahul-goel/fused-ssim@328dc9836f513d00c4b5bc38fe30478b4435cbb5",
"fused-bilagrid @ git+https://github.com/harry7557558/fused-bilagrid@49f0ef06c9f81810fb9b5dd9027cf1844950cc16",
"scikit-learn",
]
viewer = [
"jaxtyping",
"viser",
"matplotlib",
"splines",
"nerfview @ git+https://github.com/nerfstudio-project/nerfview@4538024fe0d15fd1a0e4d760f3695fc44ca72787",
]
mesh = [
"open3d==0.18.0",
"scikit-image",
"scipy",
]
segment = [
"networkx",
"open3d==0.18.0",
"scipy",
]
sfm = [
"huggingface_hub",
"pycolmap==3.13.0",
"safetensors",
"scipy",
"tqdm",
]
priors = [
"moge @ git+https://github.com/microsoft/MoGe.git",
"open3d==0.18.0",
"scikit-learn",
"scipy",
]
dev = [
"pytest",
"ruff",
]
[project.scripts]
fs-train = "friendly_splat.train_app:main"
fs-view = "friendly_splat.view_app:entrypoint"
fs-sfm = "tools.sfm.run_hloc_sfm:entrypoint"
fs-mesh = "tools.mesh.tsdf_mesh_from_ply:entrypoint"
fs-segment = "tools.segment.instascene_gauscluster:entrypoint"
fs-prior-moge = "tools.geometry_prior.moge_infer:entrypoint"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["friendly_splat*", "gsplat*", "tools*"]
exclude = ["benchmarks*", "tests*"]