- New rov_simulation package (dev only — not for vehicle deployment) - mock_publisher: synthetic MAVROS sensor data with 5 test scenarios (nominal, low_battery, comms_loss, depth_warning, all_clear) - dev_stack.launch.py: launches mock_publisher + failsafe_monitor + mission_executor - Scenarios trigger specific failsafe conditions for end-to-end testing
30 lines
804 B
Python
30 lines
804 B
Python
from setuptools import setup
|
|
import os
|
|
from glob import glob
|
|
|
|
package_name = 'rov_simulation'
|
|
|
|
setup(
|
|
name=package_name,
|
|
version='0.1.0',
|
|
packages=[package_name],
|
|
data_files=[
|
|
('share/ament_index/resource_index/packages',
|
|
['resource/' + package_name]),
|
|
('share/' + package_name, ['package.xml']),
|
|
(os.path.join('share', package_name, 'launch'),
|
|
glob('launch/*.py')),
|
|
],
|
|
install_requires=['setuptools'],
|
|
zip_safe=True,
|
|
maintainer='grant',
|
|
maintainer_email='grant@symbytech.com',
|
|
description='Development-only simulation utilities — NOT for deployment',
|
|
license='Proprietary',
|
|
entry_points={
|
|
'console_scripts': [
|
|
'mock_publisher = rov_simulation.mock_publisher:main',
|
|
],
|
|
},
|
|
)
|