Skip to content

Commit

Permalink
Merge branch 'ros-2-complete' of github.com:purdue-arc/rocket_league …
Browse files Browse the repository at this point in the history
…into ros-2-complete
  • Loading branch information
rtjord committed Feb 25, 2024
2 parents b8f8769 + 015df9a commit 7442507
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/rktl_dependencies/setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from glob import glob
import os
from setuptools import find_packages, setup

package_name = 'rktl_dependencies'
Expand All @@ -10,6 +12,7 @@
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('lib', package_name), glob(os.path.join(package_name, '*.py'))),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down
1 change: 1 addition & 0 deletions src/rktl_game/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))),
(os.path.join('lib', package_name), glob(os.path.join(package_name, '*.py'))),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down
1 change: 1 addition & 0 deletions src/rktl_perception/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))),
(os.path.join('lib', package_name), glob(os.path.join(package_name, '*.py'))),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down
1 change: 1 addition & 0 deletions src/rktl_planner/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))),
(os.path.join('lib', package_name), glob(os.path.join(package_name, '*.py'))),
],
install_requires=['setuptools'],
zip_safe=True,
Expand Down
7 changes: 7 additions & 0 deletions src/rktl_sim/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))),
(os.path.join('lib', package_name), glob(os.path.join(package_name, '*.py'))),
],
install_requires=['setuptools'],
zip_safe=True,
Expand All @@ -23,6 +24,12 @@
tests_require=['pytest'],
entry_points={
'console_scripts': [
'simulator = rktl_sim.simulator:main',
'visualizer = rktl_sim.visualizer:main',
'car = rktl_sim.car:main',
'sim = rktl_sim.sim:main',
'asset = rktl_sim.asset:main',
'window = rktl_sim.window:main'
],
},
)

0 comments on commit 7442507

Please sign in to comment.