[IMP] bundlify addons (except website)
[odoo/odoo.git] / addons / pad / __openerp__.py
1 # -*- coding: utf-8 -*-
2 {
3     'name': 'Collaborative Pads',
4     'version': '2.0',
5     'category': 'Project Management',
6     'description': """
7 Adds enhanced support for (Ether)Pad attachments in the web client.
8 ===================================================================
9
10 Lets the company customize which Pad installation should be used to link to new
11 pads (by default, http://ietherpad.com/).
12     """,
13     'author': 'OpenERP SA',
14     'website': 'http://openerp.com',
15     'depends': ['web'],
16     'data': [
17         'res_company.xml',
18         'views/pad.xml',
19     ],
20     'demo': ['pad_demo.xml'],
21     'installable': True,
22     'auto_install': False,
23     'web': True,
24     'qweb' : ['static/src/xml/*.xml'],
25     'images': ['static/src/img/pad_link_companies.jpeg'],
26 }
27
28 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: