-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path__manifest__.py
30 lines (29 loc) · 968 Bytes
/
__manifest__.py
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
29
30
# Copyright 2019 Ecosoft Co., Ltd (http://ecosoft.co.th/)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html)
{
'name': 'Excel Import/Export/Report',
'summary': 'Base module for developing Excel import/export/report',
'version': '12.0.1.0.4',
'author': 'Ecosoft,Odoo Community Association (OCA)',
'license': 'AGPL-3',
'website': 'https://github.com/OCA/server-tools/',
'category': 'Tools',
'depends': ['mail'],
'external_dependencies': {
'python': [
'xlrd',
'xlwt',
'openpyxl',
],
},
'data': ['security/ir.model.access.csv',
'wizard/export_xlsx_wizard.xml',
'wizard/import_xlsx_wizard.xml',
'views/xlsx_template_view.xml',
'views/xlsx_report.xml',
'views/webclient_templates.xml',
],
'installable': True,
'development_status': 'beta',
'maintainers': ['kittiu'],
}