Cobots/src/ar3_description/setup.py
Thomas Muller 9eff9ec145 Initial Commit
URDF and STLs stolen from https://github.com/ongdexter/ar3_core/tree/master/ar3_description

Bare minumum state publisher from ROS2 tutorials
2021-09-06 20:49:44 +00:00

32 lines
1,017 B
Python

import os
from glob import glob
from setuptools import setup
from setuptools import find_packages
package_name = 'ar3_description'
setup(
name=package_name,
version='0.0.0',
packages=[package_name],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
('share/' + package_name, glob('launch/*.py')),
('share/' + package_name, glob('urdf/*')),
('share/' + package_name + '/meshes', glob('meshes/*'))
],
install_requires=['setuptools'],
zip_safe=True,
maintainer=['Thomas Muller', 'John Farell'],
maintainer_email=['tmuller2017@my.fit.edu', 'farell2017@my.fit.edu'],
description='Robot description and state publisher for the AR3 arm',
license='TODO: License declaration',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'state_publisher = ar3_description.state_publisher:main'
],
},
)