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.

36 lines
1.2 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. # Copyright 2020 CorporateHub (https://corporatehub.eu)
  5. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
  6. {
  7. 'name': 'PayPal CSV Format Bank Statements Import',
  8. 'summary': 'Import PayPal CSV files as Bank Statements in Odoo',
  9. 'version': '12.0.2.2.2',
  10. 'category': 'Accounting',
  11. 'website': 'https://github.com/OCA/bank-statement-import',
  12. 'author':
  13. 'Akretion, '
  14. 'CorporateHub, '
  15. 'Odoo Community Association (OCA)',
  16. 'license': 'AGPL-3',
  17. 'installable': True,
  18. 'depends': [
  19. 'account_bank_statement_import',
  20. 'multi_step_wizard',
  21. 'web_widget_dropdown_dynamic',
  22. ],
  23. 'external_dependencies': {
  24. 'python': [
  25. 'csv',
  26. ]
  27. },
  28. 'data': [
  29. 'security/ir.model.access.csv',
  30. 'data/maps.xml',
  31. 'views/account_bank_statement_import_paypal_mapping.xml',
  32. 'views/account_bank_statement_import.xml',
  33. 'wizards/account_bank_statement_import_paypal_mapping_wizard.xml',
  34. ],
  35. }