forked from dansanti/l10n_co_fe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__manifest__.py
executable file
·55 lines (54 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
{
"name": """Facturación Electrónica para Colombia\
""",
'version': '0.0.1',
'category': 'Localization/Colombia',
'sequence': 12,
'author': 'Daniel Santibáñez Polanco',
'website': 'https://globalresponse.cl',
'license': 'AGPL-3',
'summary': '',
'description': """
Facturación Electrónica para Colombia.
""",
'depends': [
'base',
'account_invoicing',
'purchase',
'contacts',
'l10n_co_commercial',
],
'external_dependencies': {
'python': [
'xmltodict',
'dicttoxml',
'qrcode',
'base64',
'hashlib',
'cchardet',
'suds',#use suds-py3
'urllib3',
'signxml',
'ast',
'pysftp',
'num2words',
'xlsxwriter',
'io',
]
},
'data': [
'wizard/journal_config_wizard_view.xml',
'views/account_journal_dian_document_class_view.xml',
'views/journal_view.xml',
'views/dian_menuitem.xml',
'views/dian_document_class_view.xml',
'views/caf.xml',
'views/res_user.xml',
'views/res_company.xml',
'views/invoice_view.xml',
],
'installable': True,
'auto_install': False,
'application': True,
}