mirror of
https://gitlab.com/flectra-community/partner-contact.git
synced 2024-11-15 02:32:04 +00:00
22 lines
629 B
Python
22 lines
629 B
Python
# Copyright 2019 Komit <https://komit-consulting.com>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
'name': 'Email Format Checker',
|
|
'version': '1.0.2.0.0',
|
|
'summary': 'Validate email address field',
|
|
'author': "Komit, Odoo Community Association (OCA)",
|
|
'website': 'https://gitlab.com/flectra-community/partner-contact',
|
|
'category': 'Tools',
|
|
'depends': ['base_setup'],
|
|
'installable': True,
|
|
'application': False,
|
|
'license': 'AGPL-3',
|
|
'external_dependencies': {
|
|
'python': ['email_validator']
|
|
},
|
|
'data': [
|
|
'views/base_config_view.xml',
|
|
]
|
|
}
|