-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path__manifest__.py
More file actions
31 lines (31 loc) · 939 Bytes
/
__manifest__.py
File metadata and controls
31 lines (31 loc) · 939 Bytes
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
{ # pylint: disable=pointless-statement
"name": "OpenSPP DCI Server",
"summary": "DCI API server infrastructure with FastAPI routers",
"version": "19.0.2.0.0",
"category": "OpenSPP/Integration",
"author": "OpenSPP.org",
"website": "https://github.com/OpenSPP/OpenSPP2",
"license": "LGPL-3",
"development_status": "Alpha",
"depends": [
"base",
"fastapi",
"job_worker",
"spp_dci",
"spp_dci_client",
"spp_api_v2",
],
"data": [
"security/ir.model.access.csv",
"data/fastapi_endpoint_data.xml",
"data/queue_limit_data.xml",
"data/cron_data.xml",
"data/server_key_default.xml",
"views/sender_registry_views.xml",
"views/transaction_views.xml",
"views/subscription_views.xml",
],
"installable": True,
"application": False,
"maintainers": ["jeremi", "gonzalesedwin1123"],
}