-
Notifications
You must be signed in to change notification settings - Fork 11
/
__manifest__.py
43 lines (41 loc) · 1.31 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
39
40
41
42
43
# Part of OpenSPP. See LICENSE file for full copyright and licensing details.
{
"name": "OpenSPP Farmer Registry Base",
"summary": "Base module for managing farmer registries, linking farmers to farms, land, and agricultural activities.",
"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", "reichie020212"],
"depends": [
"base",
"g2p_registry_base",
"g2p_registry_individual",
"g2p_registry_group",
"g2p_registry_membership",
"spp_base_gis",
"spp_land_record",
"base_import",
],
"external_dependencies": {"python": ["shapely", "geojson", "simplejson", "pyproj"]},
"data": [
"security/ir.model.access.csv",
"data/kind_data.xml",
"data/id_data.xml",
"views/res_partner.xml",
"views/configuration_view.xml",
],
"assets": {
"web.assets_backend": [
"spp_farmer_registry_base/static/src/import_records/import_records.js",
],
},
"demo": [],
"images": [],
"application": False,
"installable": True,
"auto_install": False,
}