-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy path__manifest__.py
28 lines (27 loc) · 953 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
# Copyright 2018 Sistemas de Datos - Rodrigo Colombo Vlaeminch <rcolombo@sdatos.es>
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0
{
'name' : 'Biometric signature',
'version' : '0.1',
'author' : 'Sistemas de Datos',
'maintainer': 'Sistemas de Datos',
'category' : 'Tools',
'summary': 'Biometric signature',
'description' : """
Biometric signature
===================
Module to link Odoo with the biometric signature application developed by Sistemas de Datos.
For more information contact with Sistemas de Datos (http://www.sdatos.es).
""",
'website': 'http://www.sdatos.com',
# End General Data
'depends' : ['base',
'web',
'document'],
'data': ['security/ir.model.access.csv',
'views/biometric_conf_view.xml',
'views/biometric_signature_view.xml'],
'installable': True,
'auto_install': False,
'application': False,
}