[IMP] bundlify addons (except website)
[odoo/odoo.git] / addons / hr / __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 {
23     'name': 'Employee Directory',
24     'version': '1.1',
25     'author': 'OpenERP SA',
26     'category': 'Human Resources',
27     'sequence': 21,
28     'website': 'http://www.openerp.com',
29     'summary': 'Jobs, Departments, Employees Details',
30     'description': """
31 Human Resources Management
32 ==========================
33
34 This application enables you to manage important aspects of your company's staff and other details such as their skills, contacts, working time...
35
36
37 You can manage:
38 ---------------
39 * Employees and hierarchies : You can define your employee with User and display hierarchies
40 * HR Departments
41 * HR Jobs
42     """,
43     'author': 'OpenERP SA',
44     'website': 'http://www.openerp.com',
45     'images': [
46         'images/hr_department.jpeg',
47         'images/hr_employee.jpeg',
48         'images/hr_job_position.jpeg',
49         'static/src/img/default_image.png',
50     ],
51     'depends': ['base_setup','mail', 'resource', 'board'],
52     'data': [
53         'security/hr_security.xml',
54         'security/ir.model.access.csv',
55         'board_hr_view.xml',
56         'hr_view.xml',
57         'process/hr_process.xml',
58         'hr_installer.xml',
59         'hr_data.xml',
60         'res_config_view.xml',
61         'mail_hr_view.xml',
62         'res_users_view.xml',
63         'views/hr.xml',
64     ],
65     'demo': ['hr_demo.xml'],
66     'test': [
67         'test/hr_users.yml',
68         'test/open2recruit2close_job.yml',
69         'test/hr_demo.yml',
70     ],
71     'installable': True,
72     'application': True,
73     'auto_install': False,
74     'qweb': [ 'static/src/xml/suggestions.xml' ],
75 }
76 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: