forked from OpenG2P/openg2p-erp-community-addon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
27 lines (26 loc) · 837 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
# Copyright (C) 2014 ACSONE SA/NV (http://acsone.eu).
# Copyright (C) 2013 Akretion (http://www.akretion.com).
# @author Stéphane Bidoul <[email protected]>
# @author Sébastien BEAU <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
'name': 'Asynchronous Import',
'summary': 'Import CSV files in the background',
'version': '12.0.1.0.0',
'author': 'Akretion, ACSONE SA/NV, Odoo Community Association (OCA)',
'license': 'AGPL-3',
'website': 'https://github.com/OCA/queue',
'category': 'Generic Modules',
'depends': [
'base_import',
'queue_job',
],
'data': [
'views/base_import_async.xml',
],
'qweb': [
'static/src/xml/import.xml',
],
'installable': True,
'development_status': 'Stable',
}