19 lines
511 B
Python
19 lines
511 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': 'POS Restaurant Stripe',
|
||
|
'version': '1.0',
|
||
|
'category': 'Point of Sale',
|
||
|
'sequence': 6,
|
||
|
'summary': 'Adds American style tipping to Stripe',
|
||
|
'depends': ['pos_stripe', 'pos_restaurant', 'payment_stripe'],
|
||
|
'auto_install': True,
|
||
|
'assets': {
|
||
|
'point_of_sale._assets_pos': [
|
||
|
'pos_restaurant_stripe/static/**/*',
|
||
|
],
|
||
|
},
|
||
|
'license': 'LGPL-3',
|
||
|
}
|