forked from OCA/server-ux
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__manifest__.py
31 lines (30 loc) · 937 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
31
# Copyright 2019 Creu Blanca
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
'name': 'Document Quick Access Folder Auto Classification',
'summary': """
Auto classification of Documents after reading a QR""",
'version': '12.0.1.0.0',
'license': 'AGPL-3',
'author': 'Creu Blanca,Odoo Community Association (OCA)',
'website': 'https://github.com/OCA/server-ux',
'depends': [
'document_quick_access',
'queue_job',
],
"external_dependencies": {
"deb": ["libzbar0", "poppler-utils"],
"python": ["pyzbar", "pdf2image"],
},
'data': [
'security/security.xml',
'security/ir.model.access.csv',
'wizards/document_quick_access_missing_assign.xml',
'views/document_quick_access_missing.xml',
'data/config_parameter.xml',
'data/cron_data.xml',
],
'maintainers': [
'etobella',
],
}