forked from OCA/delivery-carrier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
38 lines (37 loc) · 1.02 KB
/
__openerp__.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
29
30
31
32
33
34
35
36
37
38
# coding: utf-8
# @author Raphael Reverdy <raphael.reverdy@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Delivery Carrier Roulier',
'version': '9.0.0.0.0',
'author': 'Akretion',
'summary': 'Integration of multiple carriers (base)',
'maintainer': 'Akretion, Odoo Community Association (OCA)',
'category': 'Warehouse',
'depends': [
'partner_helper',
'base_phone',
'document',
'keychain',
'base_suspend_security',
# 'intrastat_product', # not ported yet, customs will not work
'delivery_carrier_b2c',
],
'website': 'http://www.akretion.com/',
'data': [
'data/delivery.xml',
],
'demo': [
# 'demo/product.xml',
],
'external_dependencies': {
'python': [
'roulier', # 'git+https://github.com/akretion/roulier.git'
],
},
'tests': [],
'installable': True,
'auto_install': False,
'license': 'AGPL-3',
'application': False,
}