Merge branch 'master' of https://github.com/odoo/odoo
[odoo/odoo.git] / addons / im_chat / __openerp__.py
1 {
2     'name' : 'Instant Messaging',
3     'version': '1.0',
4     'summary': 'OpenERP Chat',
5     'author': 'OpenERP SA',
6     'sequence': '18',
7     'category': 'Tools',
8     'complexity': 'easy',
9     'website': 'https://www.odoo.com/page/live-chat',
10     'description':
11         """
12 Instant Messaging
13 =================
14
15 Allows users to chat with each other in real time. Find other users easily and
16 chat in real time. It support several chats in parallel.
17         """,
18     'data': [
19         'security/ir.model.access.csv',
20         'security/im_security.xml',
21         'views/im_chat.xml',
22         'views/im_chat_view.xml',
23         'im_chat_data.xml'
24     ],
25     'depends' : ['base', 'web', 'bus'],
26     'qweb': ['static/src/xml/*.xml'],
27     'application': True,
28     'installable': True,
29     'auto_install': True,
30 }