-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
__manifest__.py
31 lines (30 loc) · 1.01 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
# Copyright 2013-2022 GRAP (Sylvain LE GAL https://twitter.com/legalsylvain)
# Copyright 2015-2022 Akretion France
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "French Departments (Départements)",
"summary": "Populate Database with French Departments (Départements)",
"version": "16.0.1.0.1",
"category": "French Localization",
"author": "GRAP, "
"Akretion, "
"Nicolas JEUDY, "
"Odoo Community Association (OCA)",
"maintainers": ["legalsylvain"],
"website": "https://github.com/OCA/l10n-france",
"license": "AGPL-3",
"depends": [
"l10n_fr_state",
"contacts",
],
"data": [
"security/ir.model.access.csv",
"data/res_country_department.xml",
"view/res_country_department.xml",
"view/res_partner.xml",
],
"post_init_hook": "set_department_on_partner",
"images": ["static/src/img/screenshots/1.png"],
"installable": True,
}