Cobots/src/joystickmove/setup.py
ValsCSGO 8527b2411e
Almost have joystick working
Added yaml config for ar3 simulation
Added moveit_servo to handle joystick inputs
Made launch file slightly more readable
Made joystickmove actually move the robot according to robot
Changed joystickmove executable name to move
2021-09-20 20:25:09 -04:00

26 lines
665 B
Python

from setuptools import setup
package_name = 'joystickmove'
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']),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='John Farrell',
maintainer_email='farrell2017@my.fit.edu',
description='Joystick memes',
license='TODO: License declaration',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'move = joystickmove.move:main'
],
},
)