latest pushes

This commit is contained in:
2024-05-03 01:09:16 -04:00
parent 5abfc97ef2
commit a3a665b71c
5 changed files with 113 additions and 7 deletions

View File

@@ -0,0 +1,11 @@
from distutils.core import setup
from catkin_pkg.python_setup import generate_distutils_setup
# fetch values from package.xml
setup_args = generate_distutils_setup(
scripts=['src/bellande_step_api_2d.py'],
packages=['ros_web_api_bellande_step'],
package_dir={'': 'src'},
)
setup(**setup_args)