Unified hexapod repository, containing all modules
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
931B

  1. from setuptools import find_packages, setup
  2. package_name = 'hexapod_python'
  3. setup(
  4. name=package_name,
  5. version='0.0.0',
  6. packages=find_packages(exclude=['test']),
  7. data_files=[
  8. ('share/ament_index/resource_index/packages',
  9. ['resource/' + package_name]),
  10. ('share/' + package_name, ['package.xml']),
  11. ],
  12. install_requires=['setuptools'],
  13. zip_safe=True,
  14. maintainer='wuselfuzz',
  15. maintainer_email='marcus@grieger.xyz',
  16. description='TODO: Package description',
  17. license='MIT',
  18. tests_require=['pytest'],
  19. entry_points={
  20. 'console_scripts': [
  21. 'jtc_test = hexapod_python.jtc_test:main',
  22. 'ik_test = hexapod_python.ik_test:main',
  23. 'ik_calibration = hexapod_python.ik_calibration:main',
  24. 'step_test = hexapod_python.step_test:main',
  25. 'taranis_test = hexapod_python.taranis_test:main'
  26. ],
  27. },
  28. )