-
Notifications
You must be signed in to change notification settings - Fork 105
/
__manifest__.py
38 lines (37 loc) · 1.04 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 2022 ACSONE SA/NV
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Shopinvader API Cart",
"summary": """
Cart FastAPI designed to work with the shopinvader-js-cart library
see (https://github.com/shopinvader/shopinvader-js-cart)""",
"version": "16.0.1.4.0",
"license": "AGPL-3",
"author": "ACSONE SA/NV",
"website": "https://github.com/shopinvader/odoo-shopinvader",
"depends": [
"sale",
"sale_cart",
"sale_discount_display_amount",
"pydantic",
"extendable",
"fastapi",
"extendable_fastapi",
"shopinvader_sale_cart",
"shopinvader_schema_address",
"shopinvader_schema_sale",
"shopinvader_api_security_sale",
],
"data": [
"security/acl_ir_sequence.xml",
],
"demo": [],
"external_dependencies": {
"python": [
"fastapi",
"pydantic>=2.0.0",
"extendable-pydantic>=1.2.0",
]
},
"pre_init_hook": "pre_init_hook",
}