diff options
Diffstat (limited to 'addons/l10n_gr/__manifest__.py')
| -rw-r--r-- | addons/l10n_gr/__manifest__.py | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/addons/l10n_gr/__manifest__.py b/addons/l10n_gr/__manifest__.py new file mode 100644 index 00000000..d2d93a6a --- /dev/null +++ b/addons/l10n_gr/__manifest__.py @@ -0,0 +1,35 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# Copyright (C) 2009 P. Christeas <p_christ@hol.gr>. All Rights Reserved + +{ + 'name': 'Greece - Accounting', + 'author': 'P. Christeas, OpenERP SA.', + 'website': 'http://openerp.hellug.gr/', + 'category': 'Accounting/Localizations/Account Charts', + 'description': """ +This is the base module to manage the accounting chart for Greece. +================================================================== + +Greek accounting chart and localization. + """, + 'depends': [ + 'account', + 'base_iban', + 'base_vat', + ], + 'data': [ 'data/account_type_data.xml', + 'data/l10n_gr_chart_data.xml', + 'data/account.account.template.csv', + 'data/account_chart_template_data.xml', + 'data/account_data.xml', + 'data/account_tax_report_data.xml', + 'data/account_tax_data.xml', + 'data/account_chart_template_configure_data.xml' + ], + 'demo': [ + 'demo/demo_company.xml', + ], + 'license': 'LGPL-3', +} |
