~jri-openerp/enapps-csv-import-tool/fully-patched

« back to all changes in this revision

Viewing changes to ea_import/__openerp__.py

  • Committer: Enapps Ltd.
  • Date: 2012-04-10 11:00:44 UTC
  • Revision ID: openerp@enapps.co.uk-20120410110044-96aqd5mkrnlf4ptg
launchpad

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2012 Enapps LTD (<http://www.enapps.co.uk>).
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU Affero General Public License as
 
8
#    published by the Free Software Foundation, either version 3 of the
 
9
#    License, or (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU Affero General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU Affero General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
 
 
21
{
 
22
    'name' : 'Enapps Import Data tool',
 
23
    'version': '17',
 
24
    'depends' : [
 
25
        'base',
 
26
    ],
 
27
    'author' : 'ENAPPS LTD',
 
28
    'description': '''Import cvs files''',
 
29
    'website' : 'http://ennaps.co.uk/',
 
30
    'category' : 'Tool',
 
31
    'init_xml' : [],
 
32
    'demo_xml' : [
 
33
    ],
 
34
 
 
35
    'update_xml' :  [
 
36
                    'ea_import_template_view.xml',
 
37
                    'ea_import_template_line_view.xml',
 
38
                    'ea_import_template_line_calc_field_view.xml',
 
39
                    'ea_import_chain_view.xml',
 
40
                    'ea_import_chain_link_view.xml',
 
41
                    'ea_import_chain_result_view.xml',
 
42
                    'security/security_groups.xml',
 
43
                    'security/ir.model.access.csv',
 
44
                    ],
 
45
    'active': False,
 
46
    'installable': True,
 
47
 
 
48
}
 
49
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: