__manifest__.py 934 B

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. # © 2016 Serpent Consulting Services Pvt. Ltd. (support@serpentcs.com)
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  4. {
  5. 'name': 'Mass Editing',
  6. 'version': '10.0.1.0.0',
  7. 'author': 'Serpent Consulting Services Pvt. Ltd., '
  8. 'Odoo Community Association (OCA)',
  9. 'contributors': [
  10. 'Oihane Crucelaegui <oihanecrucelaegi@gmail.com>',
  11. 'Serpent Consulting Services Pvt. Ltd. <support@serpentcs.com>',
  12. 'Jay Vora <jay.vora@serpentcs.com>'
  13. ],
  14. 'category': 'Tools',
  15. 'website': 'http://www.serpentcs.com',
  16. 'license': 'GPL-3 or any later version',
  17. 'summary': 'Mass Editing',
  18. 'uninstall_hook': 'uninstall_hook',
  19. 'depends': [
  20. 'base',
  21. ],
  22. 'data': [
  23. 'security/ir.model.access.csv',
  24. 'views/mass_editing_view.xml',
  25. ],
  26. 'installable': True,
  27. 'application': False,
  28. 'auto_install': False,
  29. }