Skip to content

Commit

Permalink
Updated setup.py for rktl_planner
Browse files Browse the repository at this point in the history
  • Loading branch information
sixfootsix50 committed Feb 27, 2024
1 parent 8c2e773 commit 8437dcd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/rktl_planner/launch/simple_agent.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def generate_launch_description():
),
launch.actions.GroupAction(
actions=[
launch_ros.actions.PushRosNamespace("agents/" + str(launch.substitutions.LaunchConfiguration("agent_name"))),
launch_ros.actions.PushRosNamespace("agents/agent0"),
launch_ros.actions.Node(
package="rktl_planner",
executable="path_follower",
Expand Down
2 changes: 1 addition & 1 deletion src/rktl_planner/rktl_planner/bezier_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

import math
from rrktl_planner import BezierCurve
from rktl_planner import BezierCurve
from rktl_msgs.msg import BezierPath as BezierPathMsg
from rclpy import Duration
from geometry_msgs.msg import Vector3
Expand Down
4 changes: 4 additions & 0 deletions src/rktl_planner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@
tests_require=['pytest'],
entry_points={
'console_scripts': [
'bezier_path_server = rktl_planner.nodes.bezier_path_server.py:main',
'path_follower = rktl_planner.nodes.path_follower:main',
'path_planner = rktl_planner.nodes.path_planner:main',
'patrol_planner = rktl_planner.nodes.patrol_planner:main'
],
},
)

0 comments on commit 8437dcd

Please sign in to comment.