-
Notifications
You must be signed in to change notification settings - Fork 168
/
setup.py
44 lines (42 loc) · 1.11 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
from setuptools import setup, find_packages
package_name = 'rosboard'
setup(
name=package_name,
version='1.3.1',
packages=find_packages(), #[package_name],
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
install_requires=[
'setuptools',
'tornado>=4.2.1',
],
extras_require = {
'system_stats': ['psutil'],
},
package_data={
'rosboard': [
'html/*',
'html/fonts/*',
'html/css/*',
'html/css/images/*',
'html/js/*',
'html/js/viewers/*',
'html/js/viewers/meta/*',
'html/js/transports/*'
]
},
#zip_safe=True,
maintainer='dheera',
maintainer_email='dheeradheera.net',
description='ROS node that turns your robot into a web server to visualize ROS topics',
license='BSD',
tests_require=['pytest'],
entry_points={
'console_scripts': [
"rosboard_node = rosboard.rosboard:main",
],
},
)