[IMP] bundlify addons (except website)
[odoo/odoo.git] / addons / note / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 {
23     'name': 'Notes',
24     'version': '1.0',
25     'category': 'Tools',
26     'description': """
27 This module allows users to create their own notes inside OpenERP
28 =================================================================
29
30 Use notes to write meeting minutes, organize ideas, organize personnal todo
31 lists, etc. Each user manages his own personnal Notes. Notes are available to
32 their authors only, but they can share notes to others users so that several
33 people can work on the same note in real time. It's very efficient to share
34 meeting minutes.
35
36 Notes can be found in the 'Home' menu.
37 """,
38     'author': 'OpenERP SA',
39     'website': 'http://openerp.com',
40     'summary': 'Sticky notes, Collaborative, Memos',
41     'sequence': 9,
42     'depends': [
43         'mail',
44     ],
45     'data': [
46         'security/note_security.xml',
47         'security/ir.rule.xml',
48         'security/ir.model.access.csv',
49         'note_data.xml',
50         'note_view.xml',
51         'views/note.xml',
52     ],
53     'demo': [
54         'note_demo.xml',
55     ],
56     'test': [
57     ],
58     'images': [
59         'images/note_kanban.jpeg',
60         'images/note.jpeg',
61         'images/categories_tree.jpeg'
62     ],
63     'installable': True,
64     'application': True,
65     'auto_install': False,
66 }
67
68 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: