[IMP] bundlify addons (except website)
[odoo/odoo.git] / addons / base_import / __openerp__.py
1 {
2     'name': 'Base import',
3     'description': """
4 New extensible file import for OpenERP
5 ======================================
6
7 Re-implement openerp's file import system:
8
9 * Server side, the previous system forces most of the logic into the
10   client which duplicates the effort (between clients), makes the
11   import system much harder to use without a client (direct RPC or
12   other forms of automation) and makes knowledge about the
13   import/export system much harder to gather as it is spread over
14   3+ different projects.
15
16 * In a more extensible manner, so users and partners can build their
17   own front-end to import from other file formats (e.g. OpenDocument
18   files) which may be simpler to handle in their work flow or from
19   their data production sources.
20
21 * In a module, so that administrators and users of OpenERP who do not
22   need or want an online import can avoid it being available to users.
23 """,
24     'category': 'Uncategorized',
25     'website': 'http://www.openerp.com',
26     'author': 'OpenERP SA',
27     'depends': ['web'],
28     'installable': True,
29     'auto_install': True,
30     'data': [
31         'security/ir.model.access.csv',
32         'views/base_import.xml',
33     ],
34     'qweb': ['static/src/xml/import.xml'],
35     'test': ['static/test/states.js'],
36 }