Skip to content

Commit

Permalink
install package marker and manifest (#62)
Browse files Browse the repository at this point in the history
Signed-off-by: Dirk Thomas <dirk-thomas@users.noreply.github.com>
  • Loading branch information
dirk-thomas committed Aug 30, 2019
1 parent 413ad50 commit cb911b9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Empty file added launch_ros/resource/launch_ros
Empty file.
9 changes: 8 additions & 1 deletion launch_ros/setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
from setuptools import find_packages
from setuptools import setup

package_name = 'launch_ros'

setup(
name='launch_ros',
name=package_name,
version='0.8.4',
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
],
install_requires=[
'setuptools',
'ament_index_python',
Expand Down

0 comments on commit cb911b9

Please sign in to comment.