init
This commit is contained in:
0
harvest_arm_ctrl/harvest_arm_ctrl/__init__.py
Normal file
0
harvest_arm_ctrl/harvest_arm_ctrl/__init__.py
Normal file
6
harvest_arm_ctrl/harvest_arm_ctrl/arm_ctrl.py
Normal file
6
harvest_arm_ctrl/harvest_arm_ctrl/arm_ctrl.py
Normal file
@ -0,0 +1,6 @@
|
||||
def main():
|
||||
print('Hi from harvest_arm_ctrl.')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
18
harvest_arm_ctrl/package.xml
Normal file
18
harvest_arm_ctrl/package.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
|
||||
<package format="3">
|
||||
<name>harvest_arm_ctrl</name>
|
||||
<version>0.0.0</version>
|
||||
<description>TODO: Package description</description>
|
||||
<maintainer email="zhengliu@sjtu.edu.cn">zl</maintainer>
|
||||
<license>TODO: License declaration</license>
|
||||
|
||||
<test_depend>ament_copyright</test_depend>
|
||||
<test_depend>ament_flake8</test_depend>
|
||||
<test_depend>ament_pep257</test_depend>
|
||||
<test_depend>python3-pytest</test_depend>
|
||||
|
||||
<export>
|
||||
<build_type>ament_python</build_type>
|
||||
</export>
|
||||
</package>
|
||||
0
harvest_arm_ctrl/resource/harvest_arm_ctrl
Normal file
0
harvest_arm_ctrl/resource/harvest_arm_ctrl
Normal file
4
harvest_arm_ctrl/setup.cfg
Normal file
4
harvest_arm_ctrl/setup.cfg
Normal file
@ -0,0 +1,4 @@
|
||||
[develop]
|
||||
script_dir=$base/lib/harvest_arm_ctrl
|
||||
[install]
|
||||
install_scripts=$base/lib/harvest_arm_ctrl
|
||||
30
harvest_arm_ctrl/setup.py
Normal file
30
harvest_arm_ctrl/setup.py
Normal file
@ -0,0 +1,30 @@
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
package_name = 'harvest_arm_ctrl'
|
||||
|
||||
setup(
|
||||
name=package_name,
|
||||
version='0.0.0',
|
||||
packages=find_packages(exclude=['test']),
|
||||
data_files=[
|
||||
('share/ament_index/resource_index/packages',
|
||||
['resource/' + package_name]),
|
||||
('share/' + package_name, ['package.xml']),
|
||||
],
|
||||
install_requires=['setuptools'],
|
||||
zip_safe=True,
|
||||
maintainer='zl',
|
||||
maintainer_email='zhengliu@sjtu.edu.cn',
|
||||
description='TODO: Package description',
|
||||
license='TODO: License declaration',
|
||||
extras_require={
|
||||
'test': [
|
||||
'pytest',
|
||||
],
|
||||
},
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'arm_ctrl = harvest_arm_ctrl.arm_ctrl:main'
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user