-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (42 loc) · 1.3 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 find_packages
from setuptools import setup
package_name = 'launch_ext'
setup(
name=package_name,
version='0.0.1',
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
install_requires=[
'setuptools',
# 'launch'
],
zip_safe=True,
author='Russ Webber',
author_email='[email protected]',
# maintainer='Aditya Pande, Brandon Ong',
# maintainer_email='[email protected], [email protected]',
url='https://github.com/Greenroom-Robotics/launch_ext',
download_url='https://github.com/Greenroom-Robotics/launch_ext/releases',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Some extras for `launch` tooling.',
long_description=(
'Some extras for `launch` tooling.'
),
license='MIT',
tests_require=['pytest'],
entry_points={
'launch.frontend.launch_extension': [
'launch_ext = launch_ext',
],
}
)