__manifest__.py 485 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Website - Payment Authorize',
  5. 'version': '1.0',
  6. 'category': 'Accounting/Payment Providers',
  7. 'sequence': 365,
  8. 'summary': 'Website - Payment Authorize',
  9. 'depends': ['website_payment', 'payment_authorize'],
  10. 'data': [
  11. 'views/res_config_settings_views.xml'
  12. ],
  13. 'application': False,
  14. 'auto_install': True,
  15. 'license': 'LGPL-3',
  16. }