[MERGE] forward port of branch 8.0 up to ed1c173
[odoo/odoo.git] / addons / event / __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     'name': 'Events Organisation',
23     'version': '0.1',
24     'website' : 'https://www.odoo.com/page/events',
25     'category': 'Tools',
26     'summary': 'Trainings, Conferences, Meetings, Exhibitions, Registrations',
27     'description': """
28 Organization and management of Events.
29 ======================================
30
31 The event module allows you to efficiently organise events and all related tasks: planification, registration tracking,
32 attendances, etc.
33
34 Key Features
35 ------------
36 * Manage your Events and Registrations
37 * Use emails to automatically confirm and send acknowledgements for any event registration
38 """,
39     'author': 'OpenERP SA',
40     'depends': ['base_setup', 'board', 'email_template', 'marketing'],
41     'data': [
42         'security/event_security.xml',
43         'security/ir.model.access.csv',
44         'wizard/event_confirm_view.xml',
45         'event_view.xml',
46         'event_data.xml',
47         'report/report_event_registration_view.xml',
48         'res_partner_view.xml',
49         'res_config_view.xml',
50         'email_template.xml',
51         'views/event.xml',
52     ],
53     'demo': [
54         'event_demo.xml',
55     ],
56     'test': [
57         'test/ui/event_users.yml',
58         'test/process/event_draft2done.yml'
59     ],
60     'installable': True,
61     'auto_install': False,
62     'images': ['images/1_event_type_list.jpeg','images/2_events.jpeg','images/3_registrations.jpeg','images/events_kanban.jpeg'],
63 }
64 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: