-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 1.46 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
from setuptools import find_packages, setup
from glob import glob
import os
package_name = 'teleopros2'
#(os.path.join('share', package_name, 'launch'),glob('launch/*.launch.py')),
setup(
name=package_name,
version='0.0.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name), glob('teleopros2/launch/*launch.py')),
('lib/python3.8/site-packages/teleopros2', glob('teleopros2/*.html')),
('lib/python3.8/site-packages/teleopros2', glob('teleopros2/*.js')),
('lib/python3.8/site-packages/teleopros2', glob('teleopros2/*.py')), # shouldn't this already work?
('lib/python3.8/site-packages/teleopros2/favicons', glob('teleopros2/favicons/*')),
('lib/python3.8/site-packages/teleopros2/certs', glob('teleopros2/certs/*')),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='pgaston',
maintainer_email='[email protected]',
description='Teleop on ros2 leveraging WebRTC (aiortc).',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'teleopros2_node = teleopros2.teleopros2:main',
'jetbotStats = teleopros2.jetbotStats:main',
'jetbotMove = teleopros2.jetbotMove:main',
],
},
)