forked from ros4hri/hri_body_detect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.85 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import find_packages, setup
package_name = 'hri_body_detect'
setup(
name=package_name,
version='3.1.4',
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/ament_index/resource_index/pal_system_module',
['module/' + package_name]),
('share/ament_index/resource_index/pal_configuration.hri_body_detect',
['config/' + package_name]),
('share/' + package_name, ['package.xml']),
('share/' + package_name + '/launch', ['launch/hri_body_detect.launch.py']),
('share/' + package_name + '/launch', ['launch/hri_body_detect_with_args.launch.py']),
('share/' + package_name + '/launch', ['launch/rs_body_detect.launch.py']),
('share/' + package_name + '/launch', ['launch/rs0.launch.py']),
('share/' + package_name + '/launch', ['launch/rs1.launch.py']),
('share/' + package_name + '/launch', ['launch/rs2.launch.py']),
('share/' + package_name + '/launch', ['launch/rs3.launch.py']),
('share/' + package_name + '/module', ['module/hri_body_detect_module.yaml']),
('share/' + package_name + '/weights',
['hri_body_detect/weights/pose_landmarker_full.task']),
('share/' + package_name + '/config', ['config/00-defaults.yml']),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='Ferran Gebelli',
maintainer_email='[email protected]',
description='ROS node implementing multibody 2D/3D body pose estimation, using Google Mediapipe.\
Part of ROS4HRI.',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'node_pose_detect = hri_body_detect.node_pose_detect:main'
],
},
)