-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__manifest__.py
More file actions
53 lines (53 loc) · 1.58 KB
/
__manifest__.py
File metadata and controls
53 lines (53 loc) · 1.58 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "OpenSPP API V2",
"category": "OpenSPP/Integration",
"version": "19.0.2.0.0",
"sequence": 1,
"author": "OpenSPP.org",
"website": "https://github.com/OpenSPP/OpenSPP2",
"license": "LGPL-3",
"development_status": "Production/Stable",
"maintainers": ["jeremi", "gonzalesedwin1123", "reichie020212", "emjay0921"],
"external_dependencies": {
"python": ["pyjwt"],
},
"depends": [
"base",
"fastapi",
"spp_security",
"spp_registry",
"spp_consent",
"spp_vocabulary",
"spp_programs",
"spp_source_tracking",
],
"data": [
"security/privileges.xml",
"security/groups.xml",
"security/ir.model.access.csv",
"data/config_data.xml",
"data/fastapi_endpoint.xml",
"data/api_path_data.xml",
"data/filter_config_individual.xml",
"data/filter_config_group.xml",
"data/filter_config_program.xml",
"data/filter_config_program_membership.xml",
"wizards/show_secret_wizard_views.xml",
"views/api_client_views.xml",
"views/api_extension_views.xml",
"views/api_path_views.xml",
"views/consent_views.xml",
"views/api_outgoing_log_views.xml",
"views/menu.xml",
],
"assets": {},
"demo": [],
"images": [],
"application": True,
"installable": True,
"auto_install": False,
"post_init_hook": "_post_init_hook",
"summary": """
OpenSPP API V2 - Standards-aligned, consent-respecting API for social protection data exchange.
""",
}