__manifest__.py
{
'name': 'Hospital Management',
'version': '1.0',
'summary': 'Manage patient records, inventory, shifts, and TCP data streams',
'description': 'A module for managing patient interactions, inventory validation, DEA compliance, and real-time data streams via TCP integration.',
'author': 'Your Company',
'website': 'https://yourcompany.com',
'category': 'Healthcare',
'depends': ['base', 'web', 'mail'],
'data': [
'security/ir.model.access.csv',
'security/security_groups.xml',
'views/tcp_views/tcp_connection_views.xml',
'views/tcp_views/patient_monitor_views.xml',
'views/inventory_views/med_inventory_views.xml',
'views/inventory_views/dea_log_views.xml',
'views/patient_views/patient_form_views.xml',
'views/patient_views/encounters_views.xml',
'views/shift_views/shift_calendar_views.xml',
'views/shift_views/shift_report_views.xml',
'data/demo_data.xml',
'data/scheduled_jobs.xml',
'reports/dea_log_report.xml',
'reports/patient_status_report.xml',
],
'demo': ['data/demo_data.xml'],
'application': True,
'installable': True,
'auto_install': False,
}