forked from OCA/l10n-france
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
26 lines (25 loc) · 935 Bytes
/
__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
# -*- coding: utf-8 -*-
# © 2013-2016 GRAP (Sylvain LE GAL https://twitter.com/legalsylvain)
# © 2015-2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': u'French Departments (Départements)',
'summary': u'Populate Database with French Departments (Départements)',
'version': '10.0.1.0.0',
'category': 'French Localization',
'author': "GRAP,Akretion,Odoo Community Association (OCA)",
'website': 'http://www.grap.coop',
'license': 'AGPL-3',
'depends': ['l10n_fr_state'],
'data': [
'security/ir.model.access.csv',
'data/res_country_department_data.yml',
'view/res_country_department.xml',
'view/res_partner.xml',
],
'post_init_hook': 'set_department_on_partner',
'images': [
'static/src/img/screenshots/department_list.jpg'
],
'installable': True,
}