forked from eclipse-muto/composer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.15 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
from setuptools import find_packages, setup
import os
from glob import glob
PACKAGE_NAME = 'composer'
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, "config"), glob("config/*.yaml")),
(os.path.join("share", PACKAGE_NAME, "launch"), glob("launch/*.launch.py")),
],
install_requires=['docker', 'setuptools'],
zip_safe=True,
maintainer='composiv.ai',
maintainer_email='[email protected]',
description='Composer provides orchestration utilites for ROS2 environment',
license='Eclipse Public License',
tests_require=['unittest'],
test_suite='test',
entry_points={
'console_scripts': [
'muto_composer = composer.muto_composer:main',
'compose_plugin = composer.plugins.compose_plugin:main',
'native_plugin = composer.plugins.native_plugin:main',
'launch_plugin = composer.plugins.launch_plugin:main'
],
},
)