forked from openlabs/magento_integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__openerp__.py
37 lines (34 loc) · 820 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
35
36
37
# -*- encoding: utf-8 -*-
{
'name': 'Magento Integration',
'author': 'Openlabs Technologies & Consulting Pvt Ltd.',
'version': '0.1',
'depends': [
'base', 'sale'
],
'category': 'Specific Industry Applications',
'summary': 'Magento Integration',
'description': """
This module integrates OpenERP with magento.
============================================
This will import the following:
* Product categories
* Products
* Customers
* Addresses
* Orders
""",
'data': [
'wizard/test_connection.xml',
'wizard/import_websites.xml',
'wizard/import_catalog.xml',
'wizard/import_orders.xml',
'product.xml',
'magento.xml',
],
'css': [],
'images': [],
'demo': [],
'installable': True,
'application': True,
}