You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
846 B
29 lines
846 B
# -*- coding: utf-8 -*-
|
|
# Copyright <2011> <Daniel Reis, Maxime Chambreuil, Savoir-faire Linux>
|
|
# Copyright 2016 LasLabs Inc.
|
|
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl).
|
|
{
|
|
'name': 'External Database Source - MySQL',
|
|
'version': '10.0.1.0.0',
|
|
'category': 'Tools',
|
|
'author': "Daniel Reis, "
|
|
"LasLabs, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'https://github.com/OCA/server-tools',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'base_external_dbsource_sqlite',
|
|
],
|
|
# Uncomment this for v11
|
|
# 'external_dependencies': [
|
|
# 'python': [
|
|
# 'sqlalchemy',
|
|
# 'MySQLdb',
|
|
# ]
|
|
# ],
|
|
'demo': [
|
|
'demo/base_external_dbsource.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': True, # Remove this key for v11
|
|
}
|