2
0

__manifest__.py 627 B

12345678910111213141516171819202122232425
  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. 'external_dependencies': {
  11. 'python': ['httpx', 'web3', 'fake-useragent']
  12. },
  13. "data": [
  14. "security/ir.model.access.csv",
  15. "security/security.xml",
  16. "views/view_homepage.xml",
  17. "views/view_codes.xml",
  18. "views/view_clash_tools.xml"
  19. ],
  20. "installable": True,
  21. "auto_install": True,
  22. "application": True,
  23. 'main_data': ['home.page'],
  24. 'license': 'LGPL-3',
  25. }