__manifest__.py 497 B

123456789101112131415161718192021
  1. # -*- coding: utf-8 -*-
  2. {
  3. "name": "Home",
  4. "version": "1.0",
  5. "author": "Jack",
  6. "category": "auto_bot/Home",
  7. 'summary': 'Home',
  8. 'description': """Home""",
  9. "depends": ["base"],
  10. "data": [
  11. "security/ir.model.access.csv",
  12. "security/security.xml",
  13. "views/view_homepage.xml",
  14. "views/view_codes.xml"
  15. ],
  16. "installable": True,
  17. "auto_install": True,
  18. "application": True,
  19. 'main_data': ['home.page'],
  20. 'license': 'LGPL-3',
  21. }