[IMP] bundlify addons (except website)
[odoo/odoo.git] / addons / mass_mailing / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2013-Today OpenERP SA (<http://www.openerp.com>)
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': 'Mass Mailing Campaigns',
24     'summary': 'Design, send and track emails',
25     'description': """
26 Easily send mass mailing to your leads, opportunities or customers. Track
27 marketing campaigns performance to improve conversion rates. Design
28 professional emails and reuse templates in a few clicks.
29     """,
30     'version': '2.0',
31     'author': 'OpenERP',
32     'website': 'http://www.openerp.com',
33     'category': 'Marketing',
34     'depends': [
35         'mail',
36         'email_template',
37         'marketing',
38         'web_kanban_gauge',
39         'web_kanban_sparkline',
40         'website_mail',
41     ],
42     'data': [
43         'data/mail_data.xml',
44         'data/mass_mailing_data.xml',
45         'wizard/mail_compose_message_view.xml',
46         'wizard/test_mailing.xml',
47         'views/mass_mailing.xml',
48         'views/res_config.xml',
49         'views/res_partner.xml',
50         'views/email_template.xml',
51         'security/ir.model.access.csv',
52         'views/mass_mailing.xml',
53     ],
54     'qweb': [],
55     'demo': [
56         'data/mass_mailing_demo.xml',
57     ],
58     'installable': True,
59     'auto_install': False,
60 }