__manifest__.py 679 B

12345678910111213141516171819202122
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Hong Kong - Accounting',
  5. 'version': '1.0',
  6. 'category': 'Accounting/Localizations/Account Charts',
  7. 'description': """ This is the base module to manage chart of accounting and localization for Hong Kong """,
  8. 'author': 'Odoo SA',
  9. 'depends': ['account'],
  10. 'data': [
  11. 'data/account_chart_template_data.xml',
  12. 'data/account.account.template.csv',
  13. 'data/l10n_hk_chart_data.xml',
  14. 'data/account_chart_template_configure_data.xml',
  15. ],
  16. 'demo': [
  17. 'demo/demo_company.xml',
  18. ],
  19. 'license': 'LGPL-3',
  20. }