forked from OCA/edi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__manifest__.py
27 lines (26 loc) · 981 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
# Copyright 2015-2021 Akretion France (http://www.akretion.com/)
# @author: Alexis de Lattre <[email protected]>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Account Invoice Import Invoice2data",
"version": "14.0.2.1.0",
"category": "Accounting/Accounting",
"license": "AGPL-3",
"summary": "Import supplier invoices using the invoice2data lib",
"author": "Akretion,Odoo Community Association (OCA)",
"maintainers": ["alexis-via"],
"website": "https://github.com/OCA/edi",
"depends": ["account_invoice_import"],
# "excludes": ["account_invoice_import_simple_pdf"],
"external_dependencies": {
"python": [
"invoice2data",
# https://github.com/OCA/edi/issues/544
"dateparser==1.1.1",
],
"deb": ["poppler-utils"],
},
"data": ["wizard/account_invoice_import_view.xml"],
"demo": ["demo/demo_data.xml"],
"installable": True,
}