2
0

__manifest__.py 827 B

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "depin",
  4. 'summary': "Short (1 phrase/line) summary of the module's purpose",
  5. 'description': """
  6. Long description of module's purpose
  7. """,
  8. 'author': "My Company",
  9. 'website': "https://www.yourcompany.com",
  10. # Categories can be used to filter modules in modules listing
  11. # Check https://github.com/odoo/odoo/blob/15.0/odoo/addons/base/data/ir_module_category_data.xml
  12. # for the full list
  13. 'category': 'Uncategorized',
  14. 'version': '0.1',
  15. # any module necessary for this one to work correctly
  16. 'depends': ['base'],
  17. # always loaded
  18. 'data': [
  19. # 'security/ir.model.access.csv',
  20. 'views/views.xml',
  21. 'views/templates.xml',
  22. ],
  23. # only loaded in demonstration mode
  24. 'demo': [
  25. 'demo/demo.xml',
  26. ],
  27. }