From 462d9d1fc402acba97a364463d7940acbb061f6f Mon Sep 17 00:00:00 2001 From: Shunsuke Kimura Date: Thu, 11 May 2023 08:54:28 +0900 Subject: [PATCH 1/2] enable ros2 launch endpoint.py --- launch/{endpoint.py => endpoint_launch.py} | 0 setup.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename launch/{endpoint.py => endpoint_launch.py} (100%) diff --git a/launch/endpoint.py b/launch/endpoint_launch.py similarity index 100% rename from launch/endpoint.py rename to launch/endpoint_launch.py diff --git a/setup.py b/setup.py index 0ec66d4..1714315 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ data_files=[ ("share/ament_index/resource_index/packages", ["resource/" + package_name]), (share_dir, ["package.xml"]), - (os.path.join(share_dir, "launch"), ["launch/endpoint.py"]), + (os.path.join(share_dir, "launch"), ["launch/endpoint_launch.py"]), ], install_requires=["setuptools"], zip_safe=True, From 3bb124e74330aad988e38dfebbaeaf0ec860b2d8 Mon Sep 17 00:00:00 2001 From: Shunsuke Kimura Date: Mon, 6 Nov 2023 14:00:56 +0900 Subject: [PATCH 2/2] FIX dash into underscore for setup tools --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 1525691..3e4e25a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,4 @@ [develop] -script-dir=$base/lib/ros_tcp_endpoint +script_dir=$base/lib/ros_tcp_endpoint [install] -install-scripts=$base/lib/ros_tcp_endpoint +install_scripts=$base/lib/ros_tcp_endpoint