forked from shopinvader/odoo-shopinvader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
31 lines (31 loc) · 1.08 KB
/
__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
28
29
30
31
# Copyright 2018 Akretion (http://www.akretion.com).
# Author: Sylvain Calador (<https://www.akretion.com>)
# Author: Saritha Sahadevan (<https://www.cybrosys.com>)
# Copyright 2020 Camptocamp SA (http://www.camptocamp.com)
# @author Simone Orsi <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Import Shopinvader product image",
"version": "14.0.1.1.1",
"summary": "Import product images",
"author": "Akretion, Camptocamp",
"company": "Akretion",
"maintainer": "Akretion",
"website": "https://github.com/shopinvader/odoo-shopinvader",
"category": "Product",
"depends": ["shopinvader_image"],
"external_dependencies": {
"python": ["python-magic", "validators"],
"deb": ["libmagic1"],
},
"data": [
"data/ir_cron.xml",
"data/queue_job_channel_data.xml",
"data/queue_job_function_data.xml",
"security/ir_model_access.xml",
"views/import_product_image_view.xml",
"views/report_html.xml",
],
"license": "AGPL-3",
"installable": True,
}