Files
mir_amr/navigations/geometry2/tf2_ros/setup.py
2026-05-28 10:29:58 +07:00

14 lines
320 B
Python
Executable File

#!/usr/bin/env python
from setuptools import setup
from catkin_pkg.python_setup import generate_distutils_setup
d = generate_distutils_setup(
packages=['tf2_ros'],
package_dir={'': 'src'},
requires=['rospy', 'actionlib', 'actionlib_msgs', 'tf2_msgs',
'tf2_py', 'geometry_msgs']
)
setup(**d)