__manifest__.py 502 B

1234567891011121314151617181920212223
  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Social Media",
  4. 'summary': "Social media connectors for company settings.",
  5. 'description': """
  6. The purpose of this technical module is to provide a front for
  7. social media configuration for any other module that might need it.
  8. """,
  9. 'category': 'Hidden',
  10. 'version': '0.1',
  11. 'depends': ['base'],
  12. 'data': [
  13. 'views/res_company_views.xml',
  14. ],
  15. 'demo': [
  16. 'demo/res_company_demo.xml',
  17. ],
  18. 'license': 'LGPL-3',
  19. }