Add urdf folder and arm11.urdf

This commit is contained in:
Tristan McGinnis
2025-03-22 11:17:18 -05:00
committed by David
parent ddb6d672ad
commit 0adab485f2
3 changed files with 300 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
from setuptools import find_packages, setup
import os
from glob import glob
package_name = 'arm_pkg'
@@ -10,6 +12,8 @@ setup(
('share/ament_index/resource_index/packages',
['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('share', package_name), glob('urdf/*')),
],
install_requires=['setuptools'],
zip_safe=True,