Skip to content

Commit

Permalink
fix navigation package issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonR99 committed Nov 7, 2024
1 parent d024e62 commit 8e521d0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/rove_navigation/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup
from glob import glob
import os
from glob import glob

package_name = 'rove_navigation'

Expand All @@ -12,7 +12,7 @@
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name), glob('launch/*.launch.py')),
('share/' + package_name + '/launch', glob('launch/*.launch.py')),
('share/' + package_name + '/config', glob('config/*')),
],
install_requires=['setuptools'],
Expand All @@ -22,7 +22,6 @@
description='TODO: Package description',
license='TODO: License declaration',
tests_require=['pytest'],
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'navigate_to_person = rove_navigation.navigate_to_person:main',
Expand Down

0 comments on commit 8e521d0

Please sign in to comment.