[MERGE] latest trunk
[odoo/odoo.git] / addons / auth_signup / __openerp__.py
1 {
2  'name': 'Signup',
3  'description': 'Allow users to sign up',
4  'author': 'OpenERP SA',
5  'version': '1.0',
6  'category': 'Authentication',
7  'website': 'http://www.openerp.com',
8  'installable': True,
9  'depends': ['auth_anonymous', 'base_setup'],
10  'data': [
11      'res_config.xml',
12  ],
13  'js': [
14      'static/src/js/auth_signup.js',
15  ],
16  'css': [
17      'static/src/css/auth_signup.css',
18  ],
19  'qweb': [
20      'static/src/xml/auth_signup.xml',
21  ],
22 }