-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 972 Bytes
/
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
from setuptools import find_packages
from setuptools import setup
setup(
name='ros2_launch_util',
version='0.0.0',
packages=find_packages('src', exclude=['test']),
package_dir={'': 'src'},
install_requires=['setuptools', 'imp', 'xacro', 'ros2run', 'ament_index_python'],
author='Brett Ponsler',
author_email='[email protected]',
maintainer='Brett Ponsler',
maintainer_email='[email protected]',
url='https://github.com/bponsler/ros2_launch_util',
download_url='https://github.com/bponsler/ros2_launch_util',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='ROS 2 launch utility functions.',
long_description=('Provides utility functions for use in the ROS 2 launch system'),
license='Apache License, Version 2.0',
)