[FIX] Project_scrum/Purchase_requisition : Corrected _defaults for date/datetime...
[odoo/odoo.git] / addons / project_scrum / __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 {
24     'name': 'Scrum, Agile Development Method',
25     'version': '1.0',
26     'category': 'Enterprise Specific Modules/Information Technology',
27     'description': """
28     This module implements all concepts defined by the scrum project
29     management methodology for IT companies:
30     * Project with sprints, product owner, scrum master
31     * Sprints with reviews, daily meetings, feedbacks
32     * Product backlog
33     * Sprint backlog
34
35     It adds some concepts to the project management module:
36     * Mid-term, long-term road-map
37     * Customers/functional requests VS technical ones
38
39     It also creates a new reporting:
40     * Burn-down chart
41
42     The scrum projects and tasks inherit from the real projects and
43     tasks, so you can continue working on normal tasks that will also
44     include tasks from scrum projects.
45
46     More information on the methodology:
47     * http://controlchaos.com
48     """,
49     'author': 'OpenERP SA',
50     'depends': ['project', 'process'],
51     'init_xml': [],
52     'update_xml': [
53         'security/ir.model.access.csv',
54         'project_scrum_report.xml',
55         'wizard/project_scrum_backlog_create_task_view.xml',
56         'wizard/project_scrum_backlog_merger_view.xml',
57         'wizard/project_scrum_postpone_view.xml',
58         "wizard/project_scrum_email_view.xml",
59         'project_scrum_view.xml',
60         'wizard/project_scrum_backlog_sprint_view.xml',
61         'process/project_scrum_process.xml',
62         "board_project_scrum_view.xml",
63     ],
64     'demo_xml': ['project_scrum_demo.xml'],
65     'test': ['test/project_scrum_report.yml'],
66     'installable': True,
67     'active': False,
68     'certificate' : '00736750152003010781',
69 }
70 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: