This commit is contained in:
2024-07-25 18:47:34 -04:00
parent 34b42754b7
commit cae7436c46
6 changed files with 212 additions and 2 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_speech_detection.py'],
packages=['ros_web_api_bellande_speech_detection'],
package_dir={'': 'src'},
)
setup(**setup_args)