1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_ng_reports/__manifest__.py
2024-12-10 09:04:09 +07:00

33 lines
776 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Nigeria - Accounting Reports',
'version': '1.0',
'countries': ['ng'],
'category': 'Accounting/Localizations/Reporting',
'description': """
Accounting Reports for Nigeria
""",
'author': 'Odoo SA',
'depends': [
'l10n_ng',
'account_reports',
],
'data': [
'data/tax_report.xml',
'data/withholding_report.xml',
],
'installable': True,
'auto_install': [
'l10n_ng',
'account_reports',
],
'website': 'https://www.odoo.com/app/accounting',
'license': 'OEEL-1',
'assets': {
'web.assets_backend': [
'l10n_ng_reports/static/src/components/**/*',
],
}
}