This commit is contained in:
liangyuxuan
2025-09-24 10:36:12 +08:00
parent 8b0a131776
commit 3bfc0590fb
2 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@ setup(
zip_safe=True,
include_package_data=True,
package_data={
'detect_part': ['checkpoint/*.pt'],
'vision_detect': ['checkpoint/*.pt'],
},
maintainer='lyx',
maintainer_email='lyx@todo.todo',
@@ -27,11 +27,11 @@ setup(
tests_require=['pytest'],
entry_points={
'console_scripts': [
'detect_node = detect_part.detect:main',
'sub_pose_node = detect_part.sub_pose:main',
'calibration_node = detect_part.hand_eye_calibration:main',
'crossboard_detect_node = detect_part.crossboard_detect:main',
'service_client_node = detect_part.service_client:main',
'detect_node = vision_detect.detect:main',
'sub_pose_node = vision_detect.sub_pose:main',
'calibration_node = vision_detect.hand_eye_calibration:main',
'crossboard_detect_node = vision_detect.crossboard_detect:main',
'service_client_node = vision_detect.service_client:main',
],
},
)