-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path__manifest__.py
38 lines (37 loc) · 1.27 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
# Part of OpenSPP. See LICENSE file for full copyright and licensing details.
{
"name": "OpenSPP Document Management System",
"category": "OpenSPP",
"version": "17.0.1.3.0",
"sequence": 1,
"author": "OpenSPP.org",
"website": "https://github.com/OpenSPP/openspp-modules",
"license": "LGPL-3",
"development_status": "Production/Stable",
"maintainers": ["jeremi", "gonzalesedwin1123"],
"depends": [
"base",
"web",
],
"external_dependencies": {"python": ["Pillow>=10.3.0"]},
"data": [
"security/security.xml",
"security/ir.model.access.csv",
"views/main_view.xml",
"views/dms_directory_views.xml",
"views/dms_file_views.xml",
"views/dms_category_views.xml",
],
"assets": {
"web.assets_backend": [
"spp_dms/static/src/js/preview_binary_field.esm.js",
"spp_dms/static/src/xml/preview_binary_field.xml",
],
},
"demo": [],
"images": [],
"application": True,
"installable": True,
"auto_install": False,
"summary": "Provides a centralized system for managing and organizing documents within OpenSPP, facilitating efficient storage, retrieval, and categorization of files related to social protection programs.",
}