__manifest__.py 683 B

12345678910111213141516171819202122
  1. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  2. # Original Copyright 2015 Eezee-It, modified and maintained by Odoo.
  3. {
  4. 'name': 'Payment Provider: Worldline SIPS',
  5. 'version': '2.0',
  6. 'category': 'Accounting/Payment Providers',
  7. 'sequence': 350,
  8. 'summary': "A French payment provider for online payments all over the world.",
  9. 'depends': ['payment'],
  10. 'data': [
  11. 'views/payment_provider_views.xml',
  12. 'views/payment_sips_templates.xml',
  13. 'data/payment_provider_data.xml',
  14. ],
  15. 'application': False,
  16. 'post_init_hook': 'post_init_hook',
  17. 'uninstall_hook': 'uninstall_hook',
  18. 'license': 'LGPL-3',
  19. }