Update package descriptions
This commit is contained in:
parent
7502b7b846
commit
c9c249c6b3
@ -3,7 +3,7 @@
|
|||||||
<package format="3">
|
<package format="3">
|
||||||
<name>openarm_grip_description</name>
|
<name>openarm_grip_description</name>
|
||||||
<version>0.0.0</version>
|
<version>0.0.0</version>
|
||||||
<description>The openarm_grip_description package</description>
|
<description>URDF models for OpenArm</description>
|
||||||
<maintainer email="t95zhou@uwaterloo.ca">Thomason Zhou</maintainer>
|
<maintainer email="t95zhou@uwaterloo.ca">Thomason Zhou</maintainer>
|
||||||
<license>BSD-3-Clause</license>
|
<license>BSD-3-Clause</license>
|
||||||
|
|
||||||
|
|||||||
@ -2,30 +2,28 @@ from setuptools import setup
|
|||||||
import os
|
import os
|
||||||
from glob import glob
|
from glob import glob
|
||||||
|
|
||||||
package_name = 'openarm_grip_description'
|
package_name = "openarm_grip_description"
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name=package_name,
|
name=package_name,
|
||||||
version='0.0.0',
|
version="0.0.0",
|
||||||
packages=[package_name],
|
packages=[package_name],
|
||||||
data_files=[
|
data_files=[
|
||||||
('share/ament_index/resource_index/packages',
|
("share/ament_index/resource_index/packages", ["resource/" + package_name]),
|
||||||
['resource/' + package_name]),
|
("share/" + package_name, ["package.xml"]),
|
||||||
('share/' + package_name, ['package.xml']),
|
(os.path.join("share", package_name, "launch"), glob("launch/*.launch.py")),
|
||||||
(os.path.join('share', package_name, 'launch'), glob('launch/*.launch.py')),
|
(os.path.join("share", package_name, "urdf"), glob("urdf/*")),
|
||||||
(os.path.join('share', package_name, 'urdf'), glob('urdf/*')),
|
(os.path.join("share", package_name, "meshes"), glob("meshes/*")),
|
||||||
(os.path.join('share', package_name, 'meshes'), glob('meshes/*')),
|
(os.path.join("share", package_name, "config"), glob("config/*")),
|
||||||
(os.path.join('share', package_name, 'config'), glob('config/*'))
|
|
||||||
],
|
],
|
||||||
install_requires=['setuptools'],
|
install_requires=["setuptools"],
|
||||||
zip_safe=True,
|
zip_safe=True,
|
||||||
maintainer='author',
|
maintainer="Thomason",
|
||||||
maintainer_email='todo@todo.com',
|
maintainer_email="t95zhou@uwaterloo.ca",
|
||||||
description='The ' + package_name + ' package',
|
description="URDF models for OpenArm",
|
||||||
license='TODO: License declaration',
|
license="BSD-3-Clause",
|
||||||
tests_require=['pytest'],
|
tests_require=["pytest"],
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
"console_scripts": [],
|
||||||
],
|
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
<name>openarm_moveit_config</name>
|
<name>openarm_moveit_config</name>
|
||||||
<version>0.3.0</version>
|
<version>0.3.0</version>
|
||||||
<description>
|
<description>
|
||||||
An automatically generated package with all the configuration and launch files for using the openarm_grip with the MoveIt Motion Planning Framework
|
Configuration and launch files for using OpenArm with the MoveIt Motion Planning Framework
|
||||||
</description>
|
</description>
|
||||||
<maintainer email="t95zhou@uwaterloo.ca">Thomason Zhou</maintainer>
|
<maintainer email="t95zhou@uwaterloo.ca">Thomason Zhou</maintainer>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user