~stefan-opener/banking-addons/ba70-aggregate_payment

« back to all changes in this revision

Viewing changes to account_banking/__openerp__.py

  • Committer: Stefan Rijnhart
  • Date: 2014-07-24 06:27:08 UTC
  • mfrom: (177.2.87 banking-addons)
  • Revision ID: stefan@therp.nl-20140724062708-zshgag0zzk1atxu6
[MRG] parent branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
#    Copyright (C) 2009 EduSense BV (<http://www.edusense.nl>).
5
5
#              (C) 2011 Therp BV (<http://therp.nl>).
6
6
#              (C) 2011 Smile (<http://smile.fr>).
7
 
#            
 
7
#
8
8
#    All other contributions are (C) by their respective contributors
9
9
#
10
10
#    All Rights Reserved
26
26
 
27
27
{
28
28
    'name': 'Account Banking',
29
 
    'version': '0.1.136',
 
29
    'version': '0.4',
30
30
    'license': 'AGPL-3',
31
31
    'author': 'Banking addons community',
32
32
    'website': 'https://launchpad.net/banking-addons',
33
33
    'category': 'Banking addons',
34
34
    'depends': [
35
35
        'account_voucher',
36
 
        'account_iban_preserve_domestic',
37
36
        ],
38
37
    'data': [
39
38
        'security/ir.model.access.csv',
47
46
    'js': [
48
47
        'static/src/js/account_banking.js',
49
48
    ],
50
 
    'external_dependencies': {
51
 
        'python' : ['BeautifulSoup'],
52
 
    },
53
49
    'description': '''
54
50
    Module to do banking.
55
51
 
56
 
    Note: This module is depending on BeautifulSoup.
57
 
 
58
52
    This modules tries to combine all current banking import and export
59
53
    schemes. Rationale for this is that it is quite common to have foreign
60
54
    bank account numbers next to national bank account numbers. The current
106
100
        recognized and made available at server (re)start.
107
101
    ''',
108
102
    'installable': True,
 
103
    'auto_install': False,
109
104
}