-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 793 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (26 loc) · 793 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ros_nerf"
version = "0.0.9"
dependencies = [
# the pypi version of ros_numpy has a broken version of point_cloud2.py so we want this specific commit
"ros_numpy@git+https://github.com/eric-wieser/ros_numpy@74879737c8648f48adb507a5bdf4e51c0d194124",
"opencv-python",
"catkin_pkg",
"empy==3.3.4",
"numpy",
"nerfstudio==1.1.3",
"catkin_tools",
"rospkg",
"pyyaml",
"pillow"
]
[tool.setuptools]
packages = ["ros_nerf"]
[project.entry-points.'nerfstudio.dataparser_configs']
ros-data = "ros_nerf.data.ros_dataparser:ROSDataparser"
[project.scripts]
ns-ros = "ros_nerf.scripts.ros_runner:entrypoint"
ns-ros-save = "ros_nerf.scripts.ros_saver:entrypoint"