[view] +custom member form
[burette/cyclofficine_paris.git] / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 # cyclofficine_paris module for OpenERP, Custom module for La Cyclofficine
5 # de paris
6 #
7 # Copyright (C) 2023 cyclofficine_paris
8 # (<http://cyclocoop.org>)
9 #
10 # This file is a part of cyclofficine_paris
11 #
12 # cyclofficine_paris is free software: you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as published
14 # by the Free Software Foundation, either version 3 of the License, or (at
15 # your option) any later version.
16 #
17 # cyclofficine_paris is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
21 #
22 # You should have received a copy of the GNU General Public License
23 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #
25 ##############################################################################
26
27 {
28 'name': 'Custom Cyclofficine de Paris',
29 'version': '0.1',
30 'category': 'Association',
31 'complexity': "normal",
32 'description': """
33 This module is a profile module for Cyclofficine de Paris
34 ==========================================================
35
36 It installs the profile for bike co-ops to manage some features like:
37 * custom member form;
38 * …
39 """,
40 'author': 'La Cyclofficine de Paris',
41 'website': 'http://cyclocoop.org/',
42 'depends': [
43 'account_cancel',
44 'bikecoop',
45 'bikecoop_l10n_fr',
46 'nrt_point_of_sale',
47 ],
48 'init_xml': [
49 ],
50 'update_xml': [
51 'view/res_partner.xml',
52 ],
53 'installable': True,
54 'auto_install': False,
55 'images': [],
56 }
57
58 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: