bellande_functionality_api/web_api_bellande_step/setup.py
RonaldsonBellande 48cbbbff19
Some checks failed
Docker Image CI / build_ros1 (push) Has been cancelled
Docker Image CI / build_ros2 (push) Has been cancelled
GitHub Clone Count Update Everyday / build (push) Has been cancelled
latest pushes
2024-12-12 16:43:52 -05:00

12 lines
303 B
Python
Executable File

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=['web_api_bellande_step'],
package_dir={'': 'src'},
)
setup(**setup_args)