bugfix:central journal report
[odoo/odoo.git] / addons / scrum / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution   
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'Scrum, Agile Development Method',
26     'version': '1.0',
27     'category': 'Enterprise Specific Modules/Information Technology',
28     'description': """
29     This modules implements all concepts defined by the scrum project
30     management methodology for IT companies:
31     * Project with sprints, product owner, scrum master
32     * Sprints with reviews, daily meetings, feedbacks
33     * Product backlog
34     * Sprint backlog
35
36     It adds some concepts to the project management module:
37     * Mid-term, long-term road-map
38     * Customers/functional requests VS technical ones
39
40     It also create a new reporting:
41     * Burn-down chart
42
43     The scrum projects and tasks inherits from the real projects and
44     tasks, so you can continue working on normal tasks that will also
45     include tasks from scrum projects.
46
47     More information on the methodology:
48     * http://controlchaos.com
49     """,
50     'author': 'Tiny',
51     'depends': ['project', 'process'],
52     'init_xml': [],
53     'update_xml': [
54         'security/ir.model.access.csv',
55         'scrum_view.xml',
56         'scrum_report.xml',
57         'scrum_wizard.xml',
58         'process/scrum_process.xml'
59     ],
60     'demo_xml': ['scrum_demo.xml'],
61     'installable': True,
62     'active': False,
63     'certificate': '0084121063261',
64 }
65 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: