setup.py 978 B

1234567891011121314151617181920212223242526272829303132333435
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. from setuptools import setup
  9. package_name = 'o3de_kraken_orchestration'
  10. setup(
  11. name=package_name,
  12. version='0.0.0',
  13. packages=[package_name],
  14. data_files=[
  15. ('share/ament_index/resource_index/packages',
  16. ['resource/' + package_name]),
  17. ('share/' + package_name, ['package.xml']),
  18. ],
  19. install_requires=['setuptools'],
  20. zip_safe=True,
  21. maintainer='alekkam',
  22. maintainer_email='[email protected]',
  23. description='Orchestration code for AppleKraken robot',
  24. license='Apache 2.0',
  25. tests_require=['pytest'],
  26. entry_points={
  27. 'console_scripts': [
  28. 'kraken_orchestration_node = '
  29. 'o3de_kraken_orchestration.global_kraken_orchestration:main'
  30. ],
  31. },
  32. )