You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.0 KiB

  1. # Copyright 2014-2017 Akretion (http://www.akretion.com).
  2. # Copyright 2019 Tecnativa - Vicent Cubells
  3. # Copyright 2019-2020 Brainbean Apps (https://brainbeanapps.com)
  4. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
  5. {
  6. 'name': 'PayPal CSV Format Bank Statements Import',
  7. 'summary': 'Import PayPal CSV files as Bank Statements in Odoo',
  8. 'version': '12.0.2.0.1',
  9. 'category': 'Accounting',
  10. 'website': 'https://github.com/OCA/bank-statement-import',
  11. 'author':
  12. 'Akretion, '
  13. 'Brainbean Apps, '
  14. 'Odoo Community Association (OCA)',
  15. 'license': 'AGPL-3',
  16. 'installable': True,
  17. 'depends': [
  18. 'account_bank_statement_import',
  19. ],
  20. 'external_dependencies': {
  21. 'python': [
  22. 'csv',
  23. ]
  24. },
  25. 'data': [
  26. 'security/ir.model.access.csv',
  27. 'data/maps.xml',
  28. 'views/account_bank_statement_import_paypal_mapping.xml',
  29. 'views/account_bank_statement_import.xml',
  30. 'wizards/account_bank_statement_import_paypal_mapping_wizard.xml',
  31. ],
  32. }