-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__manifest__.py
More file actions
37 lines (36 loc) · 1.09 KB
/
__manifest__.py
File metadata and controls
37 lines (36 loc) · 1.09 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
33
34
35
36
37
# pylint: disable=pointless-statement
# Copyright 2022 ACSONE SA/NV
# License LGPL-3.0 or later (http://www.gnu.org/licenses/LGPL).
{
"name": "Odoo FastAPI",
"category": "Hidden",
"summary": """
Odoo FastAPI endpoint""",
"version": "19.0.2.0.0",
"license": "LGPL-3",
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"maintainers": ["lmignon"],
"website": "https://github.com/OpenSPP/OpenSPP2",
"depends": ["endpoint_route_handler", "spp_security"],
"data": [
"security/privileges.xml",
"security/res_groups.xml",
"security/fastapi_endpoint.xml",
"security/ir_rule+acl.xml",
"views/fastapi_menu.xml",
"views/fastapi_endpoint.xml",
"views/fastapi_endpoint_demo.xml",
],
"demo": ["demo/fastapi_endpoint_demo.xml"],
"external_dependencies": {
"python": [
"fastapi>=0.110.0",
"python-multipart",
"ujson",
"a2wsgi>=1.10.6",
"parse-accept-language",
]
},
"development_status": "Alpha",
"installable": True,
}