[FIX] improving manifests
[odoo/odoo.git] / addons / hr_applicant_document / __openerp__.py
1 # -*- coding: utf-8 -*-
2
3 {
4     'name': 'Applicant Resumes and Letters',
5     'version': '1.0',
6     'category': 'Human Resources',
7     'sequence': 25,
8     'summary': 'Search job applications by Index content.',
9     'description': """This module allows you to search job applications by content
10     of resumes and letters.""",
11     'author': 'OpenERP SA',
12     'website': 'https://www.odoo.com/page/recruitment',
13     'depends': [
14         'hr_recruitment',
15         'document'
16     ],
17     'data': [
18         'views/hr_applicant.xml'
19     ],
20     'demo': [
21         'demo/hr_applicant.xml'
22     ],
23     'installable': True,
24     'auto_install': True,
25 }
26
27 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: