__manifest__.py 751 B

12345678910111213141516171819202122232425
  1. {
  2. 'name': 'Google API Integration',
  3. 'version': '1.0.0',
  4. 'category': 'Integrations',
  5. 'summary': 'Integración con Google Drive y Google Calendar',
  6. 'description': """
  7. Módulo de integración con Google APIs que incluye:
  8. - Integración con Google Drive para gestión de archivos
  9. - Integración con Google Calendar para sincronización de eventos
  10. - Configuración centralizada en Ajustes Generales
  11. """,
  12. 'author': 'MC Team',
  13. 'website': 'https://mcteam.mx',
  14. 'depends': [
  15. 'base',
  16. 'base_setup',
  17. ],
  18. 'data': [
  19. 'views/res_config_settings_views.xml',
  20. ],
  21. 'installable': True,
  22. 'application': False,
  23. 'auto_install': False,
  24. 'license': 'LGPL-3',
  25. }