forked from OCA/delivery-carrier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
28 lines (28 loc) · 1014 Bytes
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Copyright 2022 FactorLibre - Jorge Martínez <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
{
"name": "Delivery Deliverea",
"summary": "Delivery Carrier implementation for Deliverea using their API",
"version": "16.0.1.0.1",
"category": "Stock",
"website": "https://github.com/OCA/delivery-carrier",
"author": "FactorLibre, Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"depends": [
"delivery_state",
"delivery_package_number",
],
"external_dependencies": {"python": ["unidecode"]},
"data": [
"data/deliverea_states_data.xml",
"data/product_packaging_data.xml",
"data/ir_cron.xml",
"security/ir.model.access.csv",
"views/deliverea_distribution_center_views.xml",
"views/deliverea_state_mapping.xml",
"views/delivery_carrier_views.xml",
"views/stock_picking_views.xml",
],
}