forked from shopinvader/odoo-shopinvader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
38 lines (36 loc) · 1.18 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
37
38
# Copyright 2017 Akretion (http://www.akretion.com).
# @author Sébastien BEAU <sebastien.beau@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Shopinvader Demo App",
"version": "12.0.2.0.4",
"author": "ACSONE SA/NV",
"website": "https://github.com/shopinvader/odoo-shopinvader",
"license": "AGPL-3",
"category": "Generic Modules",
"depends": [
"shopinvader",
"shopinvader_assortment",
"shopinvader_guest_mode",
"shopinvader_locomotive",
"shopinvader_locomotive_guest_mode",
"shopinvader_locomotive_elasticsearch",
"shopinvader_delivery_carrier",
"shopinvader_product_stock",
"shopinvader_image",
"shopinvader_elasticsearch",
"shopinvader_payment_manual",
"shopinvader_payment_stripe",
"product_brand",
],
"data": ["data/ir_export_product.xml"],
"demo": [
"demo/product_brand_demo.xml",
"demo/product_product_demo.xml",
"demo/se_backend_elasticsearch_demo.xml",
"demo/storage_backend_demo.xml",
],
"post_init_hook": "post_init_hook",
"installable": False,
"application": True,
}