[MODULE] ~first try
[burette/cyclofficine_ivry.git] / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # cyclofficine_ivry module for OpenERP, Custom module for La Cyclofficine
5 # d'Ivry
6 #
7 # Copyright (C) 2019 cyclofficine_ivry
8 # (<http://cyclocoop.org/index.php/les-ateliers/ivry-sur-seine/>)
9 #
10 # This file is a part of cyclofficine_ivry
11 # along with this program. If not, see <http://www.gnu.org/licenses/>.
12 #
13 ##############################################################################
14
15 {
16 'name': 'Custom Cyclofficine d\'Ivry',
17 'version': '0.1',
18 'category': 'Association',
19 'complexity': "normal",
20 'description': """
21 This module is a profile module for Cyclofficine d'Ivry
22 =======================================================
23
24 It installs the profile for bike co-ops to manage some features like:
25 * search customers by member identifier and membership informations in customers views;
26 * import initial datas;
27 * …
28 """,
29 'author': 'La Cyclofficine d\'Ivry',
30 'website': 'http://cyclocoop.org/index.php/les-ateliers/ivry-sur-seine',
31 'depends': [
32 'account_cancel',
33 'bikecoop',
34 'bikecoop_l10n_fr',
35 'nrt_point_of_sale',
36 ],
37 'init_xml': [
38 ],
39 'update_xml': [
40 'data/base.xml',
41 'data/products_categories.xml',
42 'data/products_products.xml',
43 'data/members.xml',
44 'data/users.xml',
45 'view/members.xml',
46 ],
47 'installable': True,
48 'auto_install': False,
49 'images': [],
50 }
51
52 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: