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.0 KiB

  1. # -*- coding: utf-8 -*-
  2. # © 2004-2009 Tiny SPRL (<http://tiny.be>).
  3. # © 2015 Agile Business Group <http://www.agilebg.com>
  4. # © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis
  5. # License GPL-3.0 or later (http://www.gnu.org/licenses/gpl.html).
  6. {
  7. "name": "Database Auto-Backup",
  8. "summary": "Backups database",
  9. "version": "10.0.1.0.0",
  10. "author": (
  11. "Yenthe Van Ginneken, "
  12. "Agile Business Group, "
  13. "Grupo ESOC Ingeniería de Servicios, "
  14. "LasLabs, "
  15. "Odoo Community Association (OCA)"
  16. ),
  17. 'license': "AGPL-3",
  18. "website": "http://www.vanroey.be/applications/bedrijfsbeheer/odoo",
  19. "category": "Tools",
  20. "depends": [
  21. 'base_setup',
  22. 'mail',
  23. ],
  24. "data": [
  25. "data/ir_cron.xml",
  26. "data/mail_message_subtype.xml",
  27. "security/ir.model.access.csv",
  28. "view/db_backup_view.xml",
  29. ],
  30. "application": True,
  31. "installable": True,
  32. "external_dependencies": {
  33. "python": ["pysftp"],
  34. },
  35. }