forked from OCA/l10n-spain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__manifest__.py
41 lines (40 loc) · 1.31 KB
/
__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
31
32
33
34
35
36
37
38
39
40
41
# Copyright 2021 Binovo IT Human Project SL
# Copyright 2021 Landoo Sistemas de Informacion SL
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "TicketBAI - API",
"version": "13.0.1.5.6",
"category": "Accounting & Finance",
"website": "https://github.com/OCA/l10n-spain",
"author": "Binovo," "Odoo Community Association (OCA)",
"license": "AGPL-3",
"application": False,
"installable": True,
"auto_install": False,
"development_status": "Beta",
"maintainers": ["ao-landoo"],
"depends": ["base", "base_setup"],
"external_dependencies": {
"python": [
"OpenSSL",
"xmlsig",
# for compatibility with urllib shipped with Odoo 13
"cryptography<39",
"qrcode",
"xmltodict",
"requests_pkcs12",
],
},
"data": [
"security/ir.model.access.csv",
"security/l10n_es_ticketbai_security.xml",
"data/tax_agency_data.xml",
"data/ticketbai_invoice.xml",
"views/l10n_es_ticketbai_api_views.xml",
"views/res_company_views.xml",
"views/res_config_settings_views.xml",
"views/ticketbai_certificate_views.xml",
"views/ticketbai_installation_views.xml",
],
"demo": ["demo/res_partner_demo.xml"],
}