forked from nicholas-gs/ros2_video_streamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (63 loc) · 1.55 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from glob import glob
import os
from setuptools import find_packages, setup
PACKAGE_NAME = 'ros2_video_streamer'
setup(
name=PACKAGE_NAME,
version='1.1.0',
packages=find_packages(),
data_files=[
(
'share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME],
),
(
'share/' + PACKAGE_NAME,
['package.xml'],
),
(
os.path.join(
'share',
PACKAGE_NAME,
'launch',
),
glob('launch/*.launch.xml'),
),
(
os.path.join(
'share',
PACKAGE_NAME,
'launch',
),
glob('launch/*launch.[pxy][yma]*'),
),
(
os.path.join(
'share',
PACKAGE_NAME,
'config',
),
glob('config/*.yaml'),
),
(
os.path.join('share', PACKAGE_NAME),
glob('*.mp4'),
),
],
py_modules=[],
zip_safe=True,
install_requires=[
],
author='Benjamin Poulin',
maintainer='Benjamin Poulin',
keywords=['ROS2'],
description='Camera simulator - run a recorded video file streamed on a'
+ 'ros topic as if a live webcamera.',
license='Apache License, Version 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'ros2_video_streamer_node = ros2_video_streamer.ros2_video_streamer_node:main',
],
},
)