845f61e710
Nothing has been tested yet.
16 lines
330 B
Python
16 lines
330 B
Python
from setuptools import setup
|
|
|
|
package_name = 'my_robot'
|
|
|
|
setup(
|
|
name=package_name,
|
|
version='0.0.1',
|
|
packages=[package_name],
|
|
install_requires=['setuptools'],
|
|
zip_safe=True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'motor_controller = my_robot.motor_controller_node:main',
|
|
],
|
|
},
|
|
) |