__openerp__.py 764 Bytes
Newer Older
François C. committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# -*- coding: utf-8 -*-
# © 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
    'name': 'French Overseas Departments (DOM)',
    'summary': u"Populate Database with overseas French "
               u"Departments (Départements d'outre-mer)",
    'version': '9.0.1.0.0',
    'category': 'French Localization',
    'author': "Akretion,Odoo Community Association (OCA)",
    'website': 'http://www.akretion.com',
    'license': 'AGPL-3',
    'depends': ['l10n_fr_department'],
    'data': [
        'data/res_country_state.xml',
        'data/res_country_department.xml',
    ],
    'post_init_hook': 'set_oversea_department_on_partner',
    'images': [],
    'installable': True,
}