forked from joekeo/razor_imu_9dof
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
36 lines (34 loc) · 1.27 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
from glob import glob
import os
from setuptools import setup, find_packages
PACKAGE_NAME = "ros2_razor_imu"
SHARE_DIR = os.path.join("share", PACKAGE_NAME)
setup(
name=PACKAGE_NAME,
version='1.2.0',
packages=find_packages("src"),
package_dir={'': 'src'},
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
(os.path.join(SHARE_DIR, "launch"), glob(os.path.join("launch", "*.launch.py"))),
(os.path.join(SHARE_DIR, "config"), glob(os.path.join("config", "*.yaml")))],
py_modules=[],
zip_safe=True,
install_requires=['setuptools',
'pyserial',
'pyyaml',
'transforms3d',
'vpython',
'wxPython'],
author='Kristof Robot, Tang Tiong Yew, Paul Bouchier, Peter Bartz',
maintainer='Kristof Robot',
keywords=['ROS2'],
description='ros2_razor_imu is a package that provides a ROS2 driver for the Sparkfun Razor IMU 9DOF.',
license='BSD',
entry_points={
'console_scripts': ['imu_node = ros2_razor_imu.imu_node:main',
'display_3D_visualization_node = ros2_razor_imu.display_3D_visualization:main'
],
}
)