Advertisement
Guest User

zqd

a guest
Oct 16th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "openacademy",
  4.  
  5. 'summary': """
  6. Short (1 phrase/line) summary of the module's purpose, used as
  7. subtitle on modules listing or apps.openerp.com""",
  8.  
  9. 'description': """
  10. Long description of module's purpose
  11. """,
  12.  
  13. 'author': "My Company",
  14. 'website': "http://www.yourcompany.com",
  15.  
  16. # Categories can be used to filter modules in modules listing
  17. # Check https://github.com/odoo/odoo/blob/12.0/odoo/addons/base/data/ir_module_category_data.xml
  18. # for the full list
  19. 'category': 'Uncategorized',
  20. 'version': '0.1',
  21.  
  22. # any module necessary for this one to work correctly
  23. 'depends': ['base'],
  24.  
  25. # always loaded
  26. 'data': [
  27. 'security/ir.model.access.csv',
  28. 'views/views.xml',
  29. 'views/templates.xml',
  30. 'views/openacademy.xml'
  31. ],
  32. # only loaded in demonstration mode
  33. 'demo': [
  34. 'demo/demo.xml',
  35. ],
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement