__manifest__.py 610 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'POS Stripe',
  5. 'version': '1.0',
  6. 'category': 'Sales/Point of Sale',
  7. 'sequence': 6,
  8. 'summary': 'Integrate your POS with a Stripe payment terminal',
  9. 'description': '',
  10. 'data': [
  11. 'views/pos_payment_method_views.xml',
  12. 'views/assets_stripe.xml',
  13. ],
  14. 'depends': ['point_of_sale', 'payment_stripe'],
  15. 'installable': True,
  16. 'assets': {
  17. 'point_of_sale.assets': [
  18. 'pos_stripe/static/**/*',
  19. ],
  20. },
  21. 'license': 'LGPL-3',
  22. }