~openupgrade-committers/openupgrade-server/5.0

« back to all changes in this revision

Viewing changes to bin/addons/openupgrade_records/__terp__.py

  • Committer: Stefan Rijnhart
  • Date: 2012-05-27 12:24:43 UTC
  • mfrom: (2175.1.3 openupgrade-server)
  • Revision ID: stefan@therp.nl-20120527122443-7lh1cvrm26wt8u6e
[MRG] Add openupgrade development module for easy analysis file generation

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    This module Copyright (C) 2012 OpenUpgrade community
 
6
#    https://launchpad.net/~openupgrade-committers
 
7
#
 
8
#    Contributors:
 
9
#    Therp BV <http://therp.nl>
 
10
#
 
11
#    This program is free software: you can redistribute it and/or modify
 
12
#    it under the terms of the GNU Affero General Public License as
 
13
#    published by the Free Software Foundation, either version 3 of the
 
14
#    License, or (at your option) any later version.
 
15
#
 
16
#    This program is distributed in the hope that it will be useful,
 
17
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
#    GNU Affero General Public License for more details.
 
20
#
 
21
#    You should have received a copy of the GNU Affero General Public License
 
22
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
23
#
 
24
##############################################################################
 
25
 
 
26
 
 
27
{
 
28
    'name': 'OpenUpgrade Records',
 
29
    'version': '0.2',
 
30
    'category': 'Normal',
 
31
    'description': """Allow OpenUpgrade records to be 
 
32
stored in the database and compare with other servers.
 
33
 
 
34
This module depends on OpenERP client lib:
 
35
 
 
36
    easy_install openerp-client-lib
 
37
 
 
38
""",
 
39
    'author': 'OpenUpgrade Community',
 
40
    'maintainer': 'OpenUpgrade Community',
 
41
    'contributors': ['Therp BV'],
 
42
    'website': 'https://launchpad.net/~openupgrade-committers',
 
43
    'depends': [],
 
44
    'init_xml': [],
 
45
    'update_xml': [
 
46
        'view/openupgrade_record.xml',
 
47
        'view/comparison_config.xml',
 
48
        'view/analysis_wizard.xml',
 
49
        'view/generate_records_wizard.xml',
 
50
        'view/install_all_wizard.xml',
 
51
        'security/ir.model.access.csv',
 
52
        ],
 
53
    'demo_xml': [
 
54
    ],
 
55
    'test': [
 
56
    ],
 
57
    'installable': True,
 
58
    'auto_install': False,
 
59
    'external_dependencies': {
 
60
        'python' : ['openerplib'],
 
61
        },
 
62
}
 
63
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: