forked from OCA/server-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
29 lines (29 loc) · 846 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
# -*- 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 - MSSQL',
'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',
# 'pymssql',
# ]
# ],
'demo': [
'demo/base_external_dbsource.xml',
],
'installable': True,
'auto_install': True, # Remove this key for v11
}