-
Notifications
You must be signed in to change notification settings - Fork 11
/
__manifest__.py
33 lines (32 loc) · 971 Bytes
/
__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
# Part of OpenSPP. See LICENSE file for full copyright and licensing details.
{
"name": "OpenSPP DCI API Server",
"summary": "Provides a DCI-compliant RESTful API for secure data exchange with OpenSPP's registry.",
"category": "OpenSPP",
"version": "17.0.1.3.0",
"author": "OpenSPP.org",
"development_status": "Beta",
"maintainers": [
"jeremi",
"gonzalesedwin1123",
"reichie020212",
],
"external_dependencies": {"python": ["PyLD", "pyjwt>=2.4.0"]},
"website": "https://github.com/OpenSPP/openspp-modules",
"license": "LGPL-3",
"depends": [
"base",
"g2p_registry_base",
"g2p_registry_individual",
"g2p_registry_group",
"g2p_registry_membership",
"spp_oauth",
],
"data": [
"security/ir.model.access.csv",
"views/client_credentials_view.xml",
],
"application": True,
"auto_install": False,
"installable": True,
}