__manifest__.py 691 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Recruitment - Skills Management',
  5. 'category': 'Human Resources/Recruitment',
  6. 'sequence': 270,
  7. 'version': '1.0',
  8. 'summary': 'Manage skills of your employees',
  9. 'description': """""",
  10. 'depends': ['hr_skills', 'hr_recruitment'],
  11. 'data': [
  12. 'security/hr_recruitment_skills_security.xml',
  13. 'views/hr_applicant_views.xml',
  14. 'views/hr_applicant_skill_views.xml',
  15. 'security/ir.model.access.csv',
  16. ],
  17. 'demo': [
  18. ],
  19. 'installable': True,
  20. 'application': False,
  21. 'auto_install': True,
  22. 'license': 'LGPL-3',
  23. }