-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
77 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
from launch import LaunchDescription | ||
from launch_ros.actions import Node | ||
|
||
def generate_launch_description(): | ||
return LaunchDescription([ | ||
Node( | ||
package='hni_py', executable='face_track_server', name='usb_cam_node', | ||
output='screen', | ||
), | ||
Node( | ||
package='hni_cpp', executable='chat_action_server', name='chat_action_server', | ||
prefix=['xterm -e'], | ||
), | ||
]) |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,4 +31,61 @@ | |
'gtts_service = hni_py.gtts_service:main', | ||
], | ||
}, | ||
|
||
) | ||
|
||
""" | ||
import os | ||
from glob import glob | ||
from setuptools import setup | ||
package_name = 'my_package' | ||
setup( | ||
name=package_name, | ||
version='1.0.0', | ||
# Packages to export | ||
packages=[package_name], | ||
# Files we want to install, specifically launch files | ||
data_files=[ | ||
# Install marker file in the package index | ||
('share/ament_index/resource_index/packages', ['resource/' + package_name]), | ||
# Include our package.xml file | ||
(os.path.join('share', package_name), ['package.xml']), | ||
# Include all launch files. | ||
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*.launch.py'))), | ||
], | ||
# This is important as well | ||
install_requires=['setuptools'], | ||
zip_safe=True, | ||
author='ROS 2 Developer', | ||
author_email='[email protected]', | ||
maintainer='ROS 2 Developer', | ||
maintainer_email='[email protected]', | ||
keywords=['foo', 'bar'], | ||
classifiers=[ | ||
'Intended Audience :: Developers', | ||
'License :: TODO', | ||
'Programming Language :: Python', | ||
'Topic :: Software Development', | ||
], | ||
description='My awesome package.', | ||
license='TODO', | ||
# Like the CMakeLists add_executable macro, you can add your python | ||
# scripts here. | ||
entry_points={ | ||
'console_scripts': [ | ||
'chat_client = hni_py.chat_client:main', | ||
'chat_service = hni_py.chat_service:main', | ||
'face_track_client = hni_py.face_track_client:main', | ||
'face_track_server = hni_py.face_track_server:main', | ||
'g2stt_service = hni_py.g2stt_service:main', | ||
'gstt_client = hni_py.gstt_client:main', | ||
'gstt_service = hni_py.gstt_service:main', | ||
'gtts_client = hni_py.gtts_client:main', | ||
'gtts_service = hni_py.gtts_service:main', | ||
], | ||
}, | ||
) | ||
""" |