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.

29 lines
709 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright 2016 Vauxoo - https://www.vauxoo.com/
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. {
  5. 'name': 'Webhook',
  6. 'version': '10.0.1.0.0',
  7. 'author': 'Vauxoo, Odoo Community Association (OCA)',
  8. 'category': 'Server Tools',
  9. 'website': 'https://www.vauxoo.com',
  10. 'license': 'AGPL-3',
  11. 'depends': [
  12. 'web',
  13. ],
  14. 'external_dependencies': {
  15. 'python': [
  16. 'ipaddress',
  17. 'requests',
  18. ],
  19. },
  20. 'data': [
  21. 'security/ir.model.access.csv',
  22. 'views/webhook_views.xml',
  23. ],
  24. 'demo': [
  25. 'demo/webhook_demo.xml',
  26. ],
  27. 'installable': True,
  28. 'auto_install': False,
  29. }