mirror of
https://github.com/OCA/server-backend.git
synced 2025-02-18 09:52:42 +02:00
27 lines
732 B
Python
27 lines
732 B
Python
# Copyright <2011> <Daniel Reis, Maxime Chambreuil, Savoir-faire Linux>
|
|
# Copyright 2016 LasLabs Inc.
|
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
|
|
{
|
|
'name': 'External Database Source - MSSQL',
|
|
'version': '12.0.1.0.0',
|
|
'category': 'Tools',
|
|
'author': "Daniel Reis, "
|
|
"LasLabs, "
|
|
"Odoo Community Association (OCA)",
|
|
'website': 'https://github.com/OCA/server-backend',
|
|
'license': 'LGPL-3',
|
|
'depends': [
|
|
'base_external_dbsource_sqlite',
|
|
],
|
|
'external_dependencies': {
|
|
'python': [
|
|
'sqlalchemy',
|
|
'pymssql',
|
|
],
|
|
},
|
|
'demo': [
|
|
'demo/base_external_dbsource.xml',
|
|
],
|
|
'installable': True,
|
|
}
|