__openerp__.py 640 B

123456789101112131415161718192021222324252627
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'license': "AGPL-3",
  4. 'name': "Web Window Title",
  5. 'summary': "The custom web window title",
  6. 'description': """
  7. """,
  8. 'author': "renjie <i@renjie.me>",
  9. 'website': "https://renjie.me",
  10. 'support': 'i@renjie.me',
  11. 'category': 'Extra Tools',
  12. 'version': '1.1',
  13. 'depends': ['base_setup'],
  14. 'demo': [
  15. 'data/demo.xml',
  16. ],
  17. 'data': [
  18. 'views/webclient_templates.xml',
  19. 'views/res_config.xml',
  20. ],
  21. 'images': [
  22. 'static/description/main_screenshot.png',
  23. ],
  24. 'installable': True,
  25. 'auto_install': False,
  26. 'application': True,
  27. }