-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__manifest__.py
More file actions
32 lines (32 loc) · 1.12 KB
/
__manifest__.py
File metadata and controls
32 lines (32 loc) · 1.12 KB
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
# Copyright 2020 Tecnativa - Alexandre Díaz
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
{
"name": "Web Pivot Computed Measure",
"category": "web",
"version": "18.0.1.0.5",
"author": "Tecnativa, Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/web",
"depends": ["web"],
"auto_install": False,
"installable": True,
"maintainers": ["CarlosRoca13"],
"demo": [
"demo/demo_users_pivot_view.xml",
],
"assets": {
"web.assets_backend": [
"web_pivot_computed_measure/static/src/**/*.esm.js",
"web_pivot_computed_measure/static/src/**/*.scss",
"web_pivot_computed_measure/static/src/**/*.xml",
("remove", "web_pivot_computed_measure/static/src/test/*.esm.js"),
("remove", "web_pivot_computed_measure/static/src/pivot/*"),
],
"web.assets_backend_lazy": [
"web_pivot_computed_measure/static/src/pivot/*",
],
"web.assets_tests": [
"web_pivot_computed_measure/static/src/test/test.esm.js",
],
},
}