-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 742 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 742 Bytes
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
import os
from glob import glob
from setuptools import setup
package_name = "rewire_camera"
setup(
name=package_name,
version="0.1.0",
packages=[package_name],
install_requires=["setuptools"],
data_files=[
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
(os.path.join("share", package_name), ["package.xml"]),
(os.path.join("share", package_name, "launch"), glob("launch/*.launch.py")),
],
entry_points={
"console_scripts": [
"image_publisher = rewire_camera.image_publisher:main",
"depth_publisher = rewire_camera.depth_publisher:main",
"video_publisher = rewire_camera.video_publisher:main",
],
},
)