mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
26 lines
670 B
Python
26 lines
670 B
Python
# -*- coding: utf-8 -*-
|
|
# Author: Damien Crier
|
|
# Copyright 2016 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
{
|
|
'name': 'Account Fiscal Year',
|
|
'version': '10.0.1.0.1',
|
|
'category': 'Accounting',
|
|
'author': 'Camptocamp SA,'
|
|
'Odoo Community Association (OCA)',
|
|
'website': 'http://www.camptocamp.com',
|
|
'depends': [
|
|
'account',
|
|
'date_range'
|
|
],
|
|
'data': [
|
|
'data/date_range_type.xml',
|
|
'views/date_range_type.xml',
|
|
'security/ir.model.access.csv',
|
|
],
|
|
'installable': True,
|
|
'application': True,
|
|
'auto_install': False,
|
|
'license': 'AGPL-3',
|
|
}
|