212821793a
The robot rotated with the ros2 topic pub command in the readme
20 lines
491 B
Python
20 lines
491 B
Python
from setuptools import setup
|
|
|
|
package_name = 'my_robot'
|
|
|
|
setup(
|
|
name=package_name,
|
|
version='0.0.1',
|
|
packages=[package_name],
|
|
data_files=[
|
|
('share/ament_index/resource_index/packages', ['resource/' + package_name]),
|
|
('share/' + package_name, ['package.xml']),
|
|
],
|
|
install_requires=['setuptools'],
|
|
zip_safe=True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'motor_controller = my_robot.motor_controller_node:main',
|
|
],
|
|
},
|
|
) |