__manifest__.py 931 B

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