[MERGE] Merged with addons/trunk.
[odoo/odoo.git] / addons / project / __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': 'Project Management',
24     'version': '1.1',
25     'author': 'OpenERP SA',
26     'website': 'http://www.openerp.com',
27     'category': 'Project Management',
28     'sequence': 8,
29     'summary': 'Projects, Tasks',
30     'images': [
31         'images/gantt.png',
32         'images/project_dashboard.jpeg',
33         'images/project_task_tree.jpeg',
34         'images/project_task.jpeg',
35         'images/project.jpeg',
36         'images/task_analysis.jpeg'
37     ],
38     'depends': [
39         'base_setup',
40         'base_status',
41         'product',
42         'analytic',
43         'board',
44         'mail',
45         'resource',
46         'web_kanban'
47     ],
48     'description': """
49 Project Management module tracks multi-level projects, tasks, work done on tasks.
50 =================================================================================
51
52 It is able to render planning, order tasks.
53
54 Dashboard for project management that includes:
55 -----------------------------------------------
56     * List of My Open Tasks
57     * Graph of My Remaining Hours by Project
58     """,
59     'data': [
60         'security/project_security.xml',
61         'wizard/project_task_delegate_view.xml',
62         'wizard/project_task_reevaluate_view.xml',
63         'security/ir.model.access.csv',
64         'project_data.xml',
65         'project_view.xml',
66         'process/task_process.xml',
67         'res_partner_view.xml',
68         'report/project_report_view.xml',
69         'report/project_cumulative.xml',
70         'board_project_view.xml',
71         'res_config_view.xml',
72     ],
73     'demo': ['project_demo.xml'],
74     'test': [
75         'test/project_demo.yml',
76         'test/project_process.yml',
77         'test/task_process.yml',
78     ],
79     'installable': True,
80     'auto_install': False,
81     'application': True,
82     'css': ['static/src/css/project.css'],
83     'js': ['static/src/js/project.js'],
84     'certificate': '0075116868317',
85 }
86 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: