__manifest__.py 671 B

123456789101112131415161718192021222324
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Initial Setup Tools',
  5. 'version': '1.0',
  6. 'category': 'Hidden',
  7. 'description': """
  8. This module helps to configure the system at the installation of a new database.
  9. ================================================================================
  10. Shows you a list of applications features to install from.
  11. """,
  12. 'depends': ['base', 'web'],
  13. 'data': [
  14. 'data/base_setup_data.xml',
  15. 'views/res_config_settings_views.xml',
  16. 'views/res_partner_views.xml',
  17. ],
  18. 'installable': True,
  19. 'license': 'LGPL-3',
  20. }