bellande_functionality_api/web_api_bellande_search_path/setup.py

12 lines
303 B
Python
Raw Permalink Normal View History

2024-07-26 01:54:17 +00:00
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'],
2024-12-12 21:43:52 +00:00
packages=['web_api_bellande_step'],
2024-07-26 01:54:17 +00:00
package_dir={'': 'src'},
)
setup(**setup_args)