forked from OCA/l10n-switzerland
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__openerp__.py
33 lines (33 loc) · 1.08 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
# -*- coding: utf-8 -*-
# © 2011-2014 Nicolas Bessi (Camptocamp SA)
# © 2014 Olivier Jossen (brain-tec AG)
# © 2014 Guewen Baconnier (Camptocamp SA)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
'name': 'Switzerland - Postal codes (ZIP) list',
'version': '9.0.2.0.0',
'author': '''
Camptocamp,
brain-tec AG,
copadoMEDIA UG,
Odoo Community Association (OCA)
''',
'category': 'Localisation',
'website': 'http://www.camptocamp.com',
'license': 'AGPL-3',
'summary': 'Provides all Swiss postal codes for auto-completion',
'depends': [
'base',
'base_location', # in https://github.com/OCA/partner-contact/
'l10n_ch_states', # in https://github.com/OCA/l10n-switzerland/
],
# We use csv file as xml is too slow
# unfortunately it doesn't work with noupdate thus we use a post_init hook
# 'init': ['data/res.better.zip.csv'],
'post_init_hook': 'post_init',
'images': [],
'demo': [],
'auto_install': False,
'installable': True,
'application': True,
}