-
Notifications
You must be signed in to change notification settings - Fork 15
/
__manifest__.py
36 lines (36 loc) · 1.12 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
32
33
34
35
36
# Copyright (C) 2012 - Today: GRAP (http://www.grap.coop)
# @author: Sylvain LE GAL (https://twitter.com/legalsylvain)
# @author Julien WESTE
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Product Labels",
"version": "12.0.1.1.5",
"category": "Product",
"author": "GRAP",
"maintainers": ["legalsylvain", "quentinDupont"],
"developpment_status": "Production/Stable",
"website": "https://github.com/grap/grap-odoo-business",
"license": "AGPL-3",
"depends": [
"product",
],
"data": [
"security/res_groups.xml",
"security/ir_rule.xml",
"security/ir.model.access.csv",
"views/view_product_product.xml",
"views/view_product_template.xml",
"views/view_product_label.xml",
],
"demo": [
"demo/res_groups.xml",
"demo/product_label.xml",
"demo/product_product.xml",
],
"images": [
"./static/description/product_label_kanban.png"
"./static/description/product_label_form.png"
"./static/description/product_template_form.png"
],
"installable": True,
}