forked from bdaiinstitute/embodied_gaussians
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (48 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
59 lines (48 loc) · 1.92 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
[project]
name = "embodied-gaussians"
requires-python = ">=3.11,<3.12"
authors = [{name="Jad Abou-Chakra"}]
description = "Physically Embodied Guassian Splatting"
version = "0.1.0"
dependencies=[
"warp-lang@https://pypi.nvidia.com/warp-lang/warp_lang-1.7.0.dev20250225-py3-none-manylinux2014_x86_64.whl", # update to 1.7.0 when released
"torch>=2.5.1,<3",
"tyro",
"torchvision",
"tqdm",
"zarr>=3.0.4,<3.1",
"trio",
"trio-util",
"opencv-python",
"marsoom @ git+https://github.com/jc211/marsoom.git",
"torchcodec@https://download.pytorch.org/whl/cu124/TorchCodec-0.1.1%2Bcu124-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", # TODO: Make this not a wheel
"realsense @ git+https://github.com/jc211/realsense.git",
"isegm @ git+https://github.com/jc211/ritm_interactive_segmentation",
# "sam-2 @ git+https://github.com/facebookresearch/sam2.git",
"pydantic", # TODO: Remove in favor of dataclasses only
"drake@https://github.com/RobotLocomotion/drake/releases/download/v1.37.0/drake-1.37.0-cp311-cp311-manylinux_2_35_x86_64.whl", # Remove drake entirely when we create our own zero-order-hold
]
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["linux-64"]
[tool.pixi.pypi-options]
no-build-isolation = ["gsplat"]
[tool.pixi.system-requirements]
cuda = "12.4"
[tool.pixi.dependencies]
ffmpeg = "*"
open3d = "*"
cuda = "12.4.*"
cuda-version = "<=12.4"
glfw = "*"
pip = ">=25.0.1,<26"
pyrealsense2 = ">=2.54.2,<3"
[tool.pixi.pypi-dependencies]
embodied_gaussians = { path = ".", editable = true }
[tool.pixi.tasks]
build_pyreduce = "pip install git+https://github.com/jc211/pysegreduce.git"
build_gsplat = "pip install git+https://github.com/nerfstudio-project/gsplat.git"
build = {depends-on=["build_pyreduce", "build_gsplat"]}
demo = "python examples/example_embodied_pusht_offline.py"
[tool.pixi.activation]
env = {LD_LIBRARY_PATH = "$CONDA_PREFIX/lib:$LD_LIBRARY_PATH"}