1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# -*- encoding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name': 'Ireland - Accounting',
'version': '1.0',
'category': 'Accounting/Localizations/Account Charts',
'description': """
This module is for all the Irish SMEs who would like to setup their accounting quickly. The module provides:
- a Chart of Accounts customised to Ireland
- VAT Rates and Structure""",
'author': 'Target Integration',
'website': 'http://www.targetintegration.com',
'depends': ['account', 'base_iban', 'base_vat'],
'data': [
'data/account_chart_template.xml',
'data/account.account.template.csv',
'data/account.chart.template.csv',
'data/account_tax_data.xml',
'data/account_chart_template_configuration_data.xml',
],
'demo': [
'demo/demo_company.xml',
],
'license': 'LGPL-3',
}
|