-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.29 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.29 KB
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 glob import glob
from setuptools import find_packages
from setuptools import setup
package_name = 'turtlebot3_automatic_parking_vision'
share_dir = 'share/' + package_name
setup(
name=package_name,
version='1.3.2',
packages=find_packages(),
data_files=[
('share/ament_index/resource_index/packages', ['resource/' + package_name]),
(share_dir, ['package.xml']),
(share_dir + '/launch', glob('launch/*.py')),
],
install_requires=['setuptools'],
zip_safe=True,
author=['Gilbert', 'ChanHyeong Lee'],
author_email=['kkjong@robotis.com', 'dddoggi1207@gmail.com'],
maintainer='Pyo',
maintainer_email='pyo@robotis.com',
keywords=['ROS', 'ROS2', 'examples', 'rclpy'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description=(
'Automatic Parking Vision for TurtleBot3 Examples.'
),
license='Apache License, Version 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'turtlebot3_automatic_parking_vision = \
turtlebot3_automatic_parking_vision.turtlebot3_automatic_parking_vision:main',
],
},
)