1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/delivery_easypost/__manifest__.py
2024-12-10 09:04:09 +07:00

27 lines
806 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': "Easypost Shipping",
'description': "Send your parcels through Easypost and track them online",
'category': 'Inventory/Delivery',
'sequence': 315,
'version': '1.0',
'application': True,
'depends': ['stock_delivery', 'mail'],
'data': [
'security/ir.model.access.csv',
'views/delivery_carrier_views.xml',
'views/res_config_settings_views.xml',
'wizard/carrier_type_views.xml',
],
'assets': {
'web.assets_backend': [
'delivery_easypost/static/src/components/**/*',
],
'web.assets_tests': [
'delivery_easypost/static/tests/tours/**/*',
],
},
'license': 'OEEL-1',
}