__openerp__.py~ 603 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': 'Biztech Theme',
  4. 'description': 'This module provides feature for changing layout of theme.',
  5. 'summary': 'This module provides feature for changing layout of theme.',
  6. 'category': 'Theme',
  7. 'version': '1.0',
  8. 'website': 'http://www.biztechconsultancy.com',
  9. 'author': 'Biztech Consultancy',
  10. 'depends': ['website'],
  11. 'data': [
  12. 'static/src/views/theme.xml',
  13. ],
  14. 'images':[
  15. 'static/description/splash_screen.png',
  16. ],
  17. 'application': True,
  18. }
  19. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: