forked from OCA/partner-contact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__openerp__.py
36 lines (35 loc) · 1.12 KB
/
__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
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8 -*-
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Contacts in several partners",
"summary": "Allow to have one contact in several partners",
"version": "9.0.1.0.0",
"category": "Customer Relationship Management",
"website": "https://odoo-community.org/",
"author": "Odoo Community Association (OCA)",
"contributors": [
'Xavier ALT <[email protected]>',
'El Hadji Dem <[email protected]>',
'TheCloneMaster <[email protected]>',
'Sandy Carter <[email protected]>',
'Rudolf Schnapka <[email protected]>',
'Sebastien Alix <[email protected]>',
'Jairo Llopis <[email protected]>',
'Richard deMeester <[email protected]>',
],
"license": "AGPL-3",
'application': False,
'installable': True,
'auto_install': False,
"depends": [
"base",
"partner_contact_personal_information_page",
],
"data": [
"views/res_partner.xml",
],
"demo": [
"demo/res_partner.xml",
"demo/ir_actions.xml",
],
}