-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path__manifest__.py
37 lines (37 loc) · 1.16 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
# Part of OpenG2P Social Registry. See LICENSE file for full copyright and licensing details.
{
"name": "OpenG2P Registry ID Deduplication",
"category": "G2P",
"version": "17.0.0.0.0",
"sequence": 1,
"author": "OpenG2P",
"website": "https://openg2p.org",
"license": "LGPL-3",
"depends": [
"g2p_registry_group",
"g2p_registry_individual",
"g2p_registry_membership",
],
"external_dependencies": {},
"data": [
"security/ir.model.access.csv",
"views/deduplication_view.xml",
"views/group_kind_id_type_mapping_view.xml",
"views/group_view.xml",
"views/individual_view.xml",
"views/res_config_view.xml",
],
"assets": {
"web.assets_backend": [
"/g2p_registry_id_deduplication/static/src/js/duplicate_button.js",
"/g2p_registry_id_deduplication/static/src/xml/duplicate_template.xml",
],
},
# 'test': ['tests/test_registry_config.py', 'tests/test_registrant.py'],
"demo": [],
"images": [],
"application": True,
"installable": True,
"auto_install": False,
"uninstall_hook": "_uninstall_cleanup",
}