forked from lbelorgey/partner-contact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__openerp__.py
27 lines (26 loc) · 826 Bytes
/
__openerp__.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
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2015 Grupo ESOC <www.grupoesoc.es>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Contact gender",
"summary": "Add gender field to contacts",
"version": "9.0.1.1.0",
"category": "Customer Relationship Management",
"website": "https://odoo-community.org/",
"author": "Grupo ESOC, Odoo Community Association (OCA)",
"contributors": [
'Jairo Llopis <[email protected]>',
'Richard deMeester <[email protected]>',
],
"license": "AGPL-3",
'application': False,
'installable': True,
'auto_install': False,
"depends": [
"partner_contact_personal_information_page",
],
"data": [
"views/res_partner.xml",
],
'post_init_hook': 'post_init_hook',
}