init
This commit is contained in:
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