__manifest__.py 871 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. {
  4. 'name': 'Kenya - Accounting',
  5. 'version': '1.0',
  6. 'category': 'Accounting/Localizations/Account Charts',
  7. 'description': """
  8. This provides a base chart of accounts and taxes template for use in Odoo.
  9. """,
  10. 'author': 'Odoo S.A.',
  11. 'depends': [
  12. 'account',
  13. ],
  14. 'data': [
  15. 'data/account_chart_template_data.xml',
  16. 'data/account.account.template.csv',
  17. 'data/l10n_ke_chart_data.xml',
  18. 'data/account_tax_group_data.xml',
  19. 'data/account_tax_report_data.xml',
  20. 'data/account_tax_template_data.xml',
  21. 'data/account_fiscal_position_template.xml',
  22. 'data/account_chart_template_configure_data.xml',
  23. ],
  24. 'demo': [
  25. 'demo/demo_company.xml'
  26. ],
  27. 'license': 'LGPL-3',
  28. }