forked from aliomattux/mage2odoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__openerp__.py
34 lines (34 loc) · 887 Bytes
/
__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
{
'name': 'Mage2Odoo',
'version': '1.1',
'author': 'Kyle Waid',
'category': 'Sales Management',
'depends': ['payment_method', 'delivery', 'stock_package', 'product_sku_upc', 'sale_stock'],
'website': 'https://www.gcotech.com',
'description': """
""",
'data': ['views/core.xml',
'views/attribute.xml',
'views/sites.xml',
'views/mapping.xml',
'views/jobs.xml',
'views/product.xml',
'views/import_export.xml',
'views/product_category.xml',
'views/model.xml',
'views/misc.xml',
'views/sale.xml',
'views/stock.xml',
'views/delivery.xml',
'views/partner.xml',
'views/exception.xml',
'data/mage_shipping.xml',
],
'test': [
],
'installable': True,
'auto_install': False,
'external_dependencies': {
'python': ['magento', 'pycountry'],
},
}